/* Custom form styles */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Global Styles */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #0f3460;
    --accent-color: #e94560;
    --light-color: #f5f5f5;
    --dark-color: #16213e;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn:hover:before {
    width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.4s, padding 0.4s;
    background: rgba(26, 26, 46, 0.3);
}

header.scrolled {
    background: rgba(26, 26, 46, 0.5);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex: 0 0 auto;
    z-index: 2;
}

.logo img {
    max-height: 130px;
    width: auto;
    transition: max-height 0.3s ease;
}

header.scrolled .logo img {
    max-height: 80px;
}

/* Updated Navigation */
.main-nav {
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

.main-nav ul li {
    margin: 0 1.5rem;
}

.main-nav ul li a {
    color: white;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.main-nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover:after,
.main-nav ul li a.active:after {
    width: 100%;
}

/* Header Contact Section */
.header-contact {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-item {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 5px;
}

.contact-item i {
    margin-right: 8px;
    color: var(--accent-color);
}

.contact-item span {
    font-size: 0.9rem;
}

/* Navigation Toggle for Mobile */
.nav-toggle {
    display: none;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(26, 26, 46, 0.5), rgba(15, 52, 96, 0.5)), url('img/bg.jpg') center/cover no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header-will {
    background: linear-gradient(rgba(26, 26, 46, 0.5), rgba(15, 52, 96, 0.5)), url('img/will.jpg') center/cover no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header-lpa {
    background: linear-gradient(rgba(26, 26, 46, 0.5), rgba(15, 52, 96, 0.5)), url('img/lpa.jpg') center/cover no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header-meeting {
    background: linear-gradient(rgba(26, 26, 46, 0.5), rgba(15, 52, 96, 0.5)), url('img/meeting.jpg') center/cover no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header-contact {
    background: linear-gradient(rgba(26, 26, 46, 0.5), rgba(15, 52, 96, 0.5)), url('img/contact.jpg') right center/cover no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}


@media (max-width: 768px) {
    .page-header-contact {
        background-position: 80% center; /* Further adjusts the right alignment for mobile screens */
    }
}

.page-title {
    text-align: center;
    animation: fadeInUp 1s forwards;
    margin-top: 130px !important;
}

.page-title h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--primary-color);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/bg2.jpg') center/cover no-repeat;
    transform: translateZ(-1px) scale(1);
    z-index: 0;
}

.hero-content {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 1;
    padding: 0 20px;
}

/* Hero Text Blur Effect */
.hero-content h1,
.hero-content p {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    padding: 10px;
    border-radius: 10px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content p {
    margin-bottom: 40px;
}


.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.8s;
}

.hero .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 1.1s;
}

.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
}

.scroll-down span {
    margin-bottom: 8px;
}

.scroll-down .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.scroll-down .mouse:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    animation: scrollAnim 2s infinite;
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--accent-color);
}

.features-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-box {
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--accent-color);
    transition: height 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-box:hover:before {
    height: 100%;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Parallax Section */
.parallax-section {
    height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 46, 0.4), rgba(15, 52, 96, 0.4)), url('img/bg2.jpg') center/cover fixed no-repeat;
    z-index: -1;
}

.parallax-content {
    max-width: 800px;
    padding: 0 20px;
}

.parallax-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}


/* Contact Section */
.contact-section {
    padding: 80px 0;
    position: relative;
}

.contact-section:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--light-color);
    clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
}

/* New Contact Container Layout */
.contact-container {
    display: flex;
    position: relative;
}

.contact-info {
    width: 30%;
    padding-right: 50px;
    animation: slideInLeft 1s forwards;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.contact-info h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-detail:hover .contact-icon {
    background: var(--accent-color);
    color: white;
    transform: rotateY(180deg);
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-text p {
    color: #666;
}

/* Divider */
.section-divider {
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 5%, var(--accent-color) 50%, transparent 95%);
    position: absolute;
    left: 30%;
    top: 0;
    opacity: 0.7;
}

/* Map Section */
.map-container {
    width: 70%;
    padding-left: 50px;
    animation: slideInRight 1s forwards;
}

.map-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.map-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.map-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Styles with matching width */
footer {
    background: var(--dark-color);
    color: white;
    padding: 70px 0 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
}

/* Specific alignment for each column */
.footer-col:nth-child(1) {
    text-align: left;
}

.footer-col:nth-child(2) {
    text-align: center;
}

.footer-col:nth-child(3) {
    text-align: right;
}

/* Adjust icon alignment for the centered column */
.footer-col:nth-child(2) p {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-col:nth-child(2) p i {
    margin-right: 12px;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

/* Position the underline based on column alignment */
.footer-col:nth-child(1) h3:after {
    left: 0;
}

.footer-col:nth-child(2) h3:after {
    left: 50%;
    transform: translateX(-50%);
}

.footer-col:nth-child(3) h3:after {
    left: auto;
    right: 0;
}

.footer-col p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-col p i {
    margin-right: 12px;
    width: 16px;
    text-align: center;
}

.footer-col a {
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        gap: 40px;
    }
    
    .footer-col {
        min-width: 100%;
        padding: 0;
    }

    /* Center all footer columns on mobile */
    .footer-col:nth-child(1),
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        text-align: center;
    }

    /* Center all underlines on mobile */
    .footer-col:nth-child(1) h3:after,
    .footer-col:nth-child(2) h3:after,
    .footer-col:nth-child(3) h3:after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    /* Adjust icon alignment for all columns on mobile */
    .footer-col p {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-col p i {
        margin-right: 12px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scrollAnim {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .header-contact {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .page-title h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 2;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        right: 20px;
        width: auto;
        height: auto;
        background: var(--primary-color);
        border-radius: 8px;
        padding: 10px 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        right: 20px;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav ul li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 8px 15px;
        border-radius: 5px;
        transition: background 0.3s;
    }
    
    .main-nav ul li a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .main-nav ul li a.active {
        background: var(--accent-color);
    }
    
    .main-nav ul li a:after {
        display: none;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info {
        width: 100%;
        padding-right: 0;
    }
    
    .section-divider {
        width: 80%;
        height: 3px;
        background: linear-gradient(to right, transparent 5%, var(--accent-color) 50%, transparent 95%);
        position: relative;
        left: 10%;
        margin: 20px 0;
    }
    
    .map-container {
        width: 100%;
        padding-left: 0;
    }
    
    .feature-box {
        min-width: 100%;
    }
    
    .logo img {
        max-height: 80px;
    }
}

/* Typewriter Animation Styles */
.typewriter-text {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 10px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    min-height: 65px; /* Sabit yükseklik vererek içerik değiştiğinde kayma olmaması için */
    display: flex;
    align-items: center;
    justify-content: center;
}

.typewriter-text span {
    position: relative;
    font-size: 1.5rem;
    color: white;
}

.typewriter-text span.typing::after {
    display: none; /* Yanıp sönen cursor'ı kaldır */
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@media (max-width: 768px) {
    .typewriter-text {
        max-width: 90%;
        padding: 15px;
        min-height: 80px;
    }
    
    .typewriter-text span {
        font-size: 1.2rem;
    }
}


/* Yeni sayfalar için ek stiller - styles.css dosyasının sonuna eklenecek */

/* Content Section */
.content-section {
    padding: 80px 0;
    background: white;
}

/* Alternatif arkaplan renkleri için ek stiller */
.content-block {
    margin-bottom: 0; /* Önceki margin'i kaldırıyoruz */
    padding: 50px 30px; /* İçeriğin etrafında boşluk bırakıyoruz */
    transition: background-color 0.3s ease;
}

/* Çift numaralı content-block elementleri için daha koyu arkaplan */
.content-block:nth-child(even) {
    background-color: #f5f5f5; /* Daha koyu, ama hala hafif bir gri ton */
}

/* Tek numaralı content-block elementleri için orijinal arkaplan */
.content-block:nth-child(odd) {
    background-color: white;
}

/* İlk ve son elementler için yuvarlatılmış köşeler */
.content-block:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.content-block:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-bottom: 50px; /* Son elementin altında boşluk */
}

/* Alternatif arkaplan için content-wrapper düzenlemesi */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden; /* Yuvarlatılmış köşeleri korumak için */
}

/* CTA box için özel düzenleme */
.content-block:last-child .cta-box {
    background: white; /* Koyu arkaplan üzerinde beyaz CTA kutusu */
    margin-top: 30px;
}

.content-block:nth-child(odd) .cta-box {
    background: #f5f5f5; /* Beyaz arkaplan üzerinde gri CTA kutusu */
}

/* Kontrastı korumak için bazı ayarlamalar */
.content-block:nth-child(even) .feature-icon,
.content-block:nth-child(even) .lpa-icon,
.content-block:nth-child(even) .service-icon {
    background: white; /* Koyu arkaplanlar üzerinde beyaz ikonlar */
}

/* LPA türleri ve check-list için arkaplan ayarları */
.content-block:nth-child(odd) .lpa-type,
.content-block:nth-child(odd) .service-item {
    background: #f5f5f5; /* Beyaz arkaplan üzerinde gri kutular */
}

.content-block:nth-child(even) .lpa-type,
.content-block:nth-child(even) .service-item {
    background: white; /* Gri arkaplan üzerinde beyaz kutular */
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.content-block h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.content-block p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-box {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-box p {
    margin-bottom: 25px;
}

/* Feature List for Wills Page */
.feature-list {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.feature-icon-2 {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Check List */
.check-list {
    list-style: none;
    margin: 20px 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.check-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
}

/* LPA Page Styles */
.lpa-types-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.lpa-type {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.lpa-type:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.lpa-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-color);
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.lpa-type h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* FAQ Section */
.faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Other Services Page */
.coming-soon-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 0;
}

.coming-soon-icon {
    width: 100px;
    height: 100px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--accent-color);
    font-size: 2.5rem;
}

.coming-soon-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.coming-soon-wrapper p {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.existing-services {
    margin-top: 60px;
    text-align: left;
}

.existing-services h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.existing-services h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.services-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.service-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.service-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--accent-color);
    transition: height 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.service-item:hover:before {
    height: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-color);
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--primary-color);
}

/* Responsive Styles for new pages */
@media (max-width: 768px) {
    .lpa-types-container {
        flex-direction: column;
    }
    
    .lpa-type {
        min-width: 100%;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .service-item {
        min-width: 100%;
    }
    
    .content-block h2, 
    .coming-soon-wrapper h2 {
        font-size: 1.8rem;
    }
}

    .cookie-consent {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.95);
        color: white;
        padding: 15px 30px;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
        z-index: 9999; /* Ensure it's above everything else */
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(100%);
        transition: transform 0.5s ease;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .cookie-consent.show {
        transform: translateY(0);
    }
    
    .cookie-text {
        flex: 1;
        padding-right: 20px;
    }
    
    .cookie-text p {
        margin: 0;
        font-size: 0.95rem;
    }
    
    .cookie-text a {
        color: var(--accent-color);
        text-decoration: underline;
        transition: color 0.3s;
    }
    
    .cookie-text a:hover {
        color: white;
    }
    
    .cookie-buttons {
        display: flex;
        gap: 10px;
        flex-shrink: 0;
    }
    
    .cookie-btn {
        padding: 8px 20px;
        border-radius: 30px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
        border: none;
        font-family: 'Poppins', sans-serif;
        font-size: 0.9rem;
    }
    
    .accept-cookies {
        background: var(--accent-color);
        color: white;
    }
    
    .accept-cookies:hover {
        background: white;
        color: var(--accent-color);
    }
    
    .decline-cookies {
        background: transparent;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }
    
    .decline-cookies:hover {
        border-color: white;
        background: rgba(255, 255, 255, 0.1);
    }
    
    @media (max-width: 768px) {
        .cookie-consent {
            flex-direction: column;
            padding: 15px;
        }
        
        .cookie-text {
            padding-right: 0;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .cookie-buttons {
            width: 100%;
            justify-content: center;
        }
    }

