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

html, body {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #c4956a;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px),
        linear-gradient(180deg, #d4a574 0%, #b8864b 50%, #a6763d 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    background-attachment: fixed;
}

/* =========================================
   HEADER STYLES
   ========================================= */
.header {
    background-color: #0056b3;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.logo {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
    color: #0056b3;
    font-size: 28px;
    border: 3px solid white;
}

.logo-text {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: -1px;
}

.logo-text span {
    color: #7ed321;
}

.tagline {
    font-size: 11px;
    color: #7ed321;
    margin-top: -5px;
    letter-spacing: 2px;
    text-transform: lowercase;
}

.menu-btn {
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background: transparent;
}

.menu-btn span {
    width: 25px;
    height: 3px;
    background-color: white;
    display: block;
    transition: all 0.3s ease;
}

/* Mobile Menu Animation States */
.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation Menu */
.nav-menu {
    background-color: #0056b3;
    padding: 0;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-menu.active {
    display: flex;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    border-top: 1px solid rgba(255,255,255,0.1);
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: rgba(255,255,255,0.1);
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    background-color: #004a9e;
    padding-left: 20px;
}

.dropdown-content.active {
    display: block;
}

.dropdown-link {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    font-size: 16px;
    font-weight: normal;
    text-transform: none;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.dropdown-link:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Desktop Navigation Override */
@media (min-width: 769px) {
    .header {
        padding: 15px 40px;
    }

    .menu-btn {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        gap: 5px;
    }

    .nav-link {
        padding: 10px 15px;
        font-size: 14px;
        border-top: none;
        border-radius: 5px;
    }

    .nav-link:hover {
        background-color: rgba(255,255,255,0.1);
    }

    .nav-dropdown {
        position: relative;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #0056b3;
        padding: 10px 0;
        min-width: 220px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        border-radius: 5px;
        z-index: 1000;
    }

    .nav-dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown-content.active {
        display: none;
    }

    .dropdown-link {
        padding: 12px 20px;
        border-top: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .dropdown-link:last-child {
        border-bottom: none;
    }
}

/* =========================================
   MAIN CONTENT STYLES
   ========================================= */
.main-content {
    padding: 40px 20px;
    min-height: 60%;
}

/* Title Section */
.title-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 10px;
}

.page-title {
    color: #88ff00;
    background-color: #0056b3;
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Laminate Container */
.laminate-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
}

/* Laminate Card */
.laminate-card {
    width: 70%;
    max-width: 350px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.laminate-card:hover {
    transform: scale(1.03);
}

.laminate-card img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.laminate-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Sustainability Banner */
.sustainability-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1200&h=300&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 30px 20px;
    color: #ffffff;
    position: relative;
}

.banner-content {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.banner-content p {
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.banner-content p::before {
    content: '"';
    font-size: 24px;
    color: #ffffff;
}

.sustainable-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* =========================================
   FOOTER STYLES
   ========================================= */
.footer {
    background-color: #0056b3;
    padding: 40px 20px 20px;
    color: white;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: white;
    transform: scale(1.1);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: fill 0.3s ease;
}

.social-icon:hover svg {
    fill: #0056b3;
}

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

.sitemap-title {
    color: #7ed321;
    font-size: 28px;
    margin-bottom: 30px;
    font-style: italic;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.sitemap-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sitemap-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.sitemap-column a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* =========================================
   RESPONSIVE STYLES
   ========================================= */
@media (min-width: 769px) {
    .page-title {
        font-size: 28px;
    }

    .laminate-container {
        max-width: 800px;
    }

    .laminate-card {
        width: 50%;
    }

    .banner-content p {
        font-size: 16px;
    }

    .sustainable-badge {
        width: 80px;
        height: 80px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .page-title {
        font-size: 22px;
    }

    .laminate-card {
        width: 55%;
    }

    .sitemap-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 14px;
        padding: 10px 20px;
    }

    .laminate-card {
        width: 85%;
    }

    .laminate-label {
        font-size: 16px;
    }

    .sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-logo-section {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 480px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer {
        padding: 30px 15px 15px;
    }

    .logo-text {
        font-size: 24px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}

@media (min-width: 1400px) {
    .laminate-container {
        max-width: 1000px;
    }

    .laminate-card {
        width: 40%;
    }

    .page-title {
        font-size: 32px;
    }
}