
        :root {
            --color-primary: #00796b; /* Teal */
            --color-secondary: #004d77; /* Deep Blue */
            --color-dark: #001e30;
            --color-light: #f4f8fa;
            --color-white: #ffffff;
            --color-text: #333333;
            --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family-base);
            font-size: 16px;
            line-height: 1.6;
            color: var(--color-text);
            background-color: var(--color-white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: Raleway, var(--font-family-base);
            color: var(--color-dark);
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }

        h1 { font-size: 2.5rem; }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.5rem; }

        p {
            margin-bottom: 1rem;
        }

        a {
            color: var(--color-primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--color-secondary);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--color-primary);
            color: var(--color-white);
            border-radius: 4px;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 1px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background-color: var(--color-white);
            color: var(--color-primary);
            border-color: var(--color-primary);
        }

        /* Header */
        .site-header {
            padding: 1rem 0;
            background-color: var(--color-white);
            border-bottom: 1px solid #e0e0e0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

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

        .site-logo img {
            max-height: 40px;
        }

        .main-nav, .header-icons {
            display: none;
        }

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

        .main-nav a {
            font-weight: 600;
            color: var(--color-dark);
        }
        
        .main-nav a:hover {
            color: var(--color-primary);
        }

        .header-icons {
             gap: 1.5rem;
        }

        .header-icons svg {
            width: 24px;
            height: 24px;
            fill: var(--color-dark);
            transition: fill 0.3s ease;
        }
        
        .header-icons a:hover svg{
            fill: var(--color-primary);
        }

        .mobile-menu-toggle {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-menu-toggle .icon-bar {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--color-dark);
            margin: 5px 0;
            transition: 0.4s;
        }

        /* Hero Section */
        .hero {
            background-image: linear-gradient(rgba(0, 30, 48, 0.5), rgba(0, 30, 48, 0.5)), url('/archive/assets/generated/collections-classic-collection-body-index-backgrou.png');
            background-size: cover;
            background-position: center;
            color: var(--color-white);
            text-align: center;
            padding: 100px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 60vh;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero h1 {
            color: var(--color-white);
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        /* Features Section */
        .features-section {
            padding: 4rem 0;
            background-color: var(--color-light);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        
        .feature-item svg {
            width: 48px;
            height: 48px;
            margin-bottom: 1rem;
            fill: var(--color-primary);
        }

        /* Content Sections */
        .content-section {
            padding: 4rem 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-header h2 {
            font-size: 2.25rem;
        }
        
        .section-header p {
            max-width: 600px;
            margin: 0 auto;
            color: #666;
        }

        /* Collections Grid */
        .collections-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .collection-card {
            background-color: var(--color-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 47, 73, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .collection-card:hover {
             transform: translateY(-5px);
             box-shadow: 0 8px 25px rgba(0, 47, 73, 0.15);
        }

        .collection-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .collection-card-content {
            padding: 1.5rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 4rem 0;
            background-color: var(--color-secondary);
            color: var(--color-white);
            text-align: center;
        }
        
        .cta-section h2 {
            color: var(--color-white);
        }
        
        .cta-section .btn {
            background-color: var(--color-white);
            color: var(--color-secondary);
            border-color: var(--color-white);
        }
        
         .cta-section .btn:hover {
            background-color: transparent;
            color: var(--color-white);
        }
        
        /* Blog Section */
        .blog-post-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .blog-post-card img {
            border-radius: 8px;
            width: 100%;
            max-width: 500px;
        }
        
        .blog-post-content {
            text-align: center;
        }
        
        .blog-post-content h3 {
            font-size: 1.75rem;
        }

        /* Footer */
        .site-footer {
            background-color: var(--color-dark);
            color: #a9b4c0;
            padding: 4rem 0 2rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            text-align: center;
        }
        
        .footer-column h4 {
            color: var(--color-white);
            margin-bottom: 1rem;
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 1px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 0.5rem;
        }
        
        .footer-column a {
            color: #a9b4c0;
        }
        
        .footer-column a:hover {
            color: var(--color-white);
            text-decoration: underline;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .social-icons svg {
            width: 24px;
            height: 24px;
            fill: #a9b4c0;
            transition: fill 0.3s ease;
        }
        
        .social-icons a:hover svg {
            fill: var(--color-white);
        }
        
        .payment-logos img {
            max-height: 24px;
            display: inline-block;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #334e68;
            font-size: 0.9rem;
        }
        
        /* Mobile Nav Menu */
        .mobile-nav-menu {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--color-white);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 999;
        }
        
        .mobile-nav-menu.active {
            display: flex;
        }

        .mobile-nav-menu ul {
            list-style: none;
            text-align: center;
        }
        
        .mobile-nav-menu li {
            margin-bottom: 2rem;
        }
        
        .mobile-nav-menu a {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--color-dark);
        }

        .close-menu {
             position: absolute;
             top: 2rem;
             right: 2rem;
             background: none;
             border: none;
             font-size: 2rem;
             color: var(--color-dark);
             cursor: pointer;
        }
        
        body.no-scroll {
            overflow: hidden;
        }


        /* Responsive Breakpoints */
        @media (min-width: 768px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2.25rem; }
            .hero { padding: 120px 0; min-height: 70vh; }
            .hero h1 { font-size: 3.5rem; }

            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .collections-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .blog-post-card {
                flex-direction: row;
                text-align: left;
            }
            .blog-post-content {
                text-align: left;
            }
            .footer-grid {
               grid-template-columns: repeat(2, 1fr);
               text-align: left;
            }
            .social-icons {
                justify-content: flex-start;
            }
        }
        
        @media (min-width: 1024px) {
            .mobile-menu-toggle { display: none; }
            .main-nav { display: block; }
            .header-icons { display: flex; }
            
            .collections-grid {   
                grid-template-columns: repeat(3, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
    