/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
    height: 80px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo .logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

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

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

/* --- SECTION SPACING --- */
section[id] {
    scroll-margin-top: 80px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.accent-text {
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-size: 0.9rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #c41e3a 0%, #a01829 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

.hero-image {
    position: relative;
}

.hero-claim-image {
    width: 75%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.about, .contact {
    padding: 6rem 0;
}

.contact {
    background-color: #f8f8f8;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.about-portrait {
    width: 300px;
    border-radius: 12px;
}

.portrait-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    object-position: center top;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

.skill-item {
    padding: 1.5rem;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.skill-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.skill-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Enhanced Clickable Cards */
.clickable-card {
    cursor: pointer;
    position: relative;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.clickable-card:hover {
    border-color: transparent;
    border-image: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%) 1;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(237, 28, 36, 0.15);
}

.clickable-card.active {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%) border-box;
    box-shadow: 0 10px 30px rgba(237, 28, 36, 0.2);
}

.card-content {
    position: relative;
    padding: 1.5rem;
}

.expand-indicator {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.clickable-card.active .expand-indicator {
    transform: rotate(180deg);
}

/* Service Details Container */
.service-details-container {
    margin-top: 3rem;
}

.service-details-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.service-card-header {
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.service-card-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.service-card-body {
    padding: 2rem;
}

/* Stacked Service Items */
.service-items-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.service-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
}

.service-item-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.service-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    text-align: center;
}

.service-content {
    flex: 1;
}

.service-item-card h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.service-note-card {
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(237, 28, 36, 0.3);
}

.service-note-card p {
    color: white;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.service-note-card strong {
    color: white;
}

.services-note {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%) border-box;
    text-align: center;
    margin-top: 3rem;
}

.services-note p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.services-note strong {
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-link {
    display: inline-block;
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact-link:hover {
    background: linear-gradient(135deg, #c41e3a 0%, #a01829 100%);
    transform: translateY(-1px);
}

/* Map Section */
.contact-map {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-container {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.enable-map-btn {
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.enable-map-btn:hover {
    background: linear-gradient(135deg, #c41e3a 0%, #a01829 100%);
    transform: translateY(-1px);
}

.google-map {
    width: 100%;
    height: 100%;
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.map-info {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-info h4 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.map-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.transport-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.transport-icon {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transport-item strong {
    color: #000;
    display: block;
    margin-bottom: 0.2rem;
}

.transport-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.transport-item a {
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.transport-item a:hover {
    text-decoration: underline;
}

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: none;
}

.cookie-banner.show {
    transform: translateY(0);
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    color: white;
}

.cookie-btn.accept:hover {
    background: linear-gradient(135deg, #c41e3a 0%, #a01829 100%);
}

.cookie-btn.necessary {
    background: transparent;
    color: white;
    border: 2px solid transparent;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)) padding-box,
    linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%) border-box;
}

.cookie-btn.settings {
    background: #333;
    color: white;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    justify-content: center;
    align-items: center;
}

.cookie-modal-content {
    background: white;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 12px;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 2rem;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.cookie-settings-persistent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
}

.cookie-settings-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-settings-btn:hover {
    background: linear-gradient(135deg, #c41e3a 0%, #a01829 100%);
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: #000;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section h3 {
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Styles */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    body, html {
        width: 100%;
        overflow-x: hidden;
    }

    .mobile-only {
        display: block;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        z-index: 1002;
    }

    .bar {
        width: 25px;
        height: 3px;
        background-color: #000;
        margin: 3px 0;
        transition: 0.3s;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: white;
        text-align: center;
        transition: left 0.3s ease-in-out;
        gap: 1.5rem;
        z-index: 1001;
        pointer-events: none;
    }

    .nav-menu.active {
        left: 0;
        pointer-events: auto;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 80px 0 2rem;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .about, .contact {
        padding: 3rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-portrait {
        margin: 0 auto;
        width: 250px;
    }

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

    .service-card-body {
        padding: 1.5rem;
    }

    .service-item-card {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        text-align: center;
        width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

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

    .section-header h2 {
        font-size: 1.8rem;
    }

    .service-card-header {
        padding: 1.5rem;
    }

    .service-card-body {
        padding: 1rem;
    }

    .service-item-card {
        padding: 1rem;
    }
}

/* Legal Pages Styling */
.legal-page-container {
    min-height: calc(100vh - 80px);
    padding-top: 120px; /* Navbar height + extra spacing */
    padding-bottom: 4rem;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
}

.legal-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    margin: 2rem auto;
    max-width: 900px;
    border: 1px solid #e0e0e0;
    position: relative;
}

.legal-page-container h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #2c3e50;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content ul li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    position: relative;
}

.legal-content ul li::marker {
    color: #ed1c24;
}

.legal-content a {
    background: linear-gradient(135deg, #ed1c24 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.legal-content a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .legal-page-container {
        padding-top: 100px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .legal-content {
        padding: 2rem 1.5rem;
        margin: 1rem auto;
        border-radius: 12px;
    }

    .legal-page-container h2 {
        font-size: 2rem;
    }

    .legal-content h3 {
        font-size: 1.3rem;
    }

    .legal-content h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .legal-page-container {
        padding-top: 100px;
    }

    .legal-content {
        padding: 1.5rem 1rem;
        margin: 0.5rem auto;
    }

    .legal-page-container h2 {
        font-size: 1.8rem;
    }
}
