/* Legal Pages Common Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header & Navigation */
.header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(139, 69, 75, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 1rem 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
        }

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f4f0ec;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    color: #e8d5d1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #e8d5d1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e8d5d1;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.burger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 60vh;
    background: linear-gradient(135deg, #8b454b 0%, #a66b70 50%, #c49599 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

.hero::before {
    position: absolute;
    font-size: 15rem;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

/* Breadcrumb */
.breadcrumb {
    background: #f4f0ec;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(139, 69, 75, 0.1);
}

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

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb-nav a {
    color: #8b454b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #a66b70;
}

.breadcrumb-nav span {
    color: #999;
}

/* Main Content */
.main-content {
    padding: 5rem 2rem;
    background: #f4f0ec;
    min-height: 100vh;
}

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

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.content-main {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(139, 69, 75, 0.1);
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(139, 69, 75, 0.1);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 69, 75, 0.15);
}

.sidebar-card h3 {
    color: #8b454b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.section-title {
    color: #8b454b;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8b454b, #c49599);
    border-radius: 2px;
}

.intro-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(139, 69, 75, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #8b454b;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(139, 69, 75, 0.1);
    transform: translateX(5px);
}

.service-card h4 {
    color: #8b454b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-steps {
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(139, 69, 75, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(139, 69, 75, 0.08);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b454b, #a66b70);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #8b454b;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.contact-cta {
    background: linear-gradient(135deg, #8b454b, #a66b70);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.contact-cta h3 {
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.quick-contact {
    list-style: none;
}

.quick-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-contact li::before {
    content: '📞';
    font-size: 1.2rem;
}

.quick-contact li:nth-child(2)::before {
    content: '✉️';
}

.quick-contact li:nth-child(3)::before {
    content: '📍';
}

.related-services {
    list-style: none;
}

.related-services li {
    margin-bottom: 0.8rem;
}

.related-services a {
    color: #8b454b;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.related-services a:hover {
    color: #a66b70;
}

.related-services a::before {
    content: '→ ';
    margin-right: 0.5rem;
}

/* Subsection styling */
.subsection-title {
    color: #8b454b;
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(139, 69, 75, 0.1), rgba(196, 149, 153, 0.1));
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #8b454b;
}

.highlight-box h4 {
    color: #8b454b;
    margin-bottom: 1rem;
}

.info-list {
    list-style: none;
    margin: 1rem 0;
}

.info-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b454b;
    font-weight: bold;
}

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

/* Mobile Navigation */
@media (max-width: 768px) {
    .burger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: 0;
        height: calc(100vh - 70px);
        background: rgba(139, 69, 75, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 50px;
        list-style: none;
        z-index: 999;
    }

    .nav-menu.mobile-active {
        transform: translateX(0%);
    }

    .nav-menu li {
        opacity: 0;
        margin-bottom: 2rem;
    }

    .nav-menu.mobile-active li {
        opacity: 1;
    }

    .nav-menu .nav-link {
        padding: 0.75rem 0;
        transition: all 0.3s ease;
        font-size: 1.2rem;
        color: white;
        text-decoration: none;
    }

    .nav-menu .nav-link:hover {
        color: #e8d5d1;
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .content-main {
        padding: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .content-main {
        padding: 1.5rem;
    }

    .sidebar-card {
        padding: 1.5rem;
    }
}

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #f4f0ec;
            text-decoration: none;
            transition: transform 0.3s ease;
            height: 30px;
            width: 100px;
        }

        .logo:hover {
            transform: scale(1.05);
            color: #e8d5d1;
        }