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

:root {
    --primary: #00b4d8;
    --secondary: #0077b6;
    --accent: #48cae4;
    --light: #caf0f8;
    --white: #ffffff;
    --dark: #023e8a;
    --gradient: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    height: 50px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23ffffff"></path></svg>') no-repeat;
    background-size: cover;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

/* Home Products Section */
.home-products {
    padding: 5rem 0;
    background: var(--light);
}

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.explore-btn-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.explore-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.about-text {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--white), var(--light));
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Products Hero */
.products-hero, .contact-hero {
    padding: 8rem 0 4rem;
    background: var(--gradient);
    text-align: center;
    color: var(--white);
}

.products-hero h1, .contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.products-hero p, .contact-hero p {
    font-size: 1.2rem;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: var(--light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bottle {
    width: 60px;
    background: var(--gradient);
    border-radius: 10px;
    position: relative;
}

.bottle-small { height: 120px; }
.bottle-medium { height: 150px; }
.bottle-large { height: 180px; }
.bottle-gallon { height: 160px; width: 80px; border-radius: 15px; }
.bottle-jar { height: 140px; width: 100px; border-radius: 50%; }
.bottle-can { height: 100px; width: 50px; border-radius: 5px; }

.product-card h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.product-size {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.product-actions {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.btn-whatsapp, .btn-call {
    flex: 1;
    padding: 0.7rem 0.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-call {
    background: var(--secondary);
    color: var(--white);
}

.btn-whatsapp:hover, .btn-call:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.contact-form-section {
    padding: 5rem 0;
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-info {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.contact-info h2 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.contact-intro {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    background: var(--light);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--dark);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.info-item p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.info-subtext {
    color: #999 !important;
    font-size: 0.85rem !important;
}

.social-links {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 2px solid var(--light);
}

.social-links h4 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: var(--primary);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: var(--dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}

/* Map Section */
.map-section {
    width: 100%;
    height: 450px;
}

.map-section iframe {
    display: block;
}

/* About Page */
.about-hero {
    padding: 8rem 0 4rem;
    background: var(--gradient);
    text-align: center;
    color: var(--white);
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
}

.company-story {
    padding: 5rem 0;
    background: var(--white);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.initiative-list {
    list-style: none;
    margin-top: 2rem;
}

.initiative-list li {
    font-size: 1.1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--light);
    border-radius: 10px;
    color: var(--dark);
}

.owner-section {
    padding: 5rem 0;
    background: var(--light);
}

.owner-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    align-items: center;
}

.owner-image {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.owner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-info h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.owner-title {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.owner-bio {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.owner-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--secondary);
    padding: 1.5rem;
    background: var(--light);
    border-left: 4px solid var(--primary);
    border-radius: 10px;
}

.values-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.value-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stars {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.customer-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--white);
}

/* Product Detail Page */
.product-detail-section {
    padding: 8rem 0 5rem;
    background: var(--light);
    min-height: 80vh;
}

/* Product Detail Page */
.product-detail-section {
    padding: 8rem 0 5rem;
    background: var(--light);
    min-height: 80vh;
}

/* Operations Page */
.operations-hero {
    padding: 8rem 0 4rem;
    background: var(--gradient);
    text-align: center;
    color: var(--white);
}

.operations-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.operations-hero p {
    font-size: 1.2rem;
}

.operations-content {
    padding: 5rem 0;
    background: var(--white);
}

.operation-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.operation-item.reverse {
    direction: rtl;
}

.operation-item.reverse > * {
    direction: ltr;
}

.operation-video {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.operation-video video {
    width: 100%;
    display: block;
}

.operation-info h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.operation-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.operation-steps {
    list-style: none;
    padding: 0;
}

.operation-steps li {
    color: #555;
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.operation-steps li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.back-link {
    display: inline-block;
    color: var(--white);
    background: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    transition: background 0.3s, transform 0.3s;
}

.back-link:hover {
    background: var(--secondary);
    transform: translateX(-5px);
}

.product-detail-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.product-detail-image {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    height: 400px;
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.thumbnail {
    height: 80px;
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-detail-info h1 {
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.detail-size {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.detail-price {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 2rem;
}

.detail-description, .detail-features {
    margin-bottom: 2rem;
}

.detail-description h3, .detail-features h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.detail-description p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

.detail-features ul {
    list-style: none;
    padding: 0;
}

.detail-features li {
    color: #555;
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.detail-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.product-detail-info .product-actions {
    margin-top: 2rem;
}

.product-detail-info .btn-whatsapp,
.product-detail-info .btn-call {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards;
}

.fade-up:nth-child(2) { animation-delay: 0.2s; }
.fade-up:nth-child(3) { animation-delay: 0.4s; }

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

.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s, transform 0.6s;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .products-hero h1, .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info, .contact-form {
        padding: 2rem;
    }

    .map-section {
        height: 300px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .story-content h2 {
        font-size: 1.8rem;
    }

    .owner-card {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .owner-image {
        width: 100%;
        height: 250px;
        margin: 0 auto;
    }

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

    .home-products-grid {
        grid-template-columns: 1fr;
    }

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

    .product-detail-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .product-detail-info h1 {
        font-size: 2rem;
    }

    .detail-price {
        font-size: 2rem;
    }

    .main-image {
        height: 300px;
    }

    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr);
    }

    .thumbnail {
        height: 60px;
    }

    .operations-hero h1 {
        font-size: 2rem;
    }

    .operation-item,
    .operation-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
}

/* Terms & Conditions Page */
.terms-content {
    padding: 60px 0;
    background: #fff;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.terms-section p, .terms-section ul, .terms-section ol {
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-section ul, .terms-section ol {
    padding-left: 25px;
}

.terms-section li {
    margin-bottom: 10px;
}

.terms-section .highlight {
    background: #e6f3ff;
    padding: 15px;
    border-left: 4px solid #0066cc;
    margin: 20px 0;
    font-weight: 500;
}

.page-header {
    background: linear-gradient(135deg, #0066cc 0%, #00ccff 100%);
    color: white;
    padding: 80px 0px 0px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin: 0;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
}

/* Operations Video Flex Layout */
.video-flex-container {
  display: flex;
  gap: 1rem;
}

/* each column */
.video-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

/* base video style */
.video-col video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
}

/* height control to mimic your sketch */
.video-col:nth-child(1) video:nth-child(1) {
  height: 420px; /* video1 (tall) */
}

.video-col:nth-child(2) video:nth-child(3) {
  height: 420px; /* video4 (tall) */
}

.video-col video:not(:nth-child(1)):not(:nth-child(3)) {
  height: 200px;
}


.operations-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.operations-cta .btn-whatsapp,
.operations-cta .btn-call {
    padding: 1rem 2rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .operations-cta {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
  .video-flex-container {
    flex-direction: column;
  }
}

/* Sitemap Page */
.sitemap-content {
    padding: 60px 0;
    background: #fff;
}

.sitemap-section {
    margin-bottom: 40px;
}

.sitemap-section h2 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: 15px;
}

.sitemap-list a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    display: inline-block;
}

.sitemap-list a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.sitemap-list a:before {
    content: '→ ';
    margin-right: 10px;
}
