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

        body {
            font-family: 'Inter Tight', sans-serif;
            color: #1a1a1a;
            background: #fff;
            line-height: 1.6;
        }

        /* Header */
        .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 40px;
            border-bottom: 1px solid #000;
        }

        .header-left {
            display: flex;
            align-items: center;
        }

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

        .hamburger span {
            width: 24px;
            height: 2px;
            background: #1a1a1a;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 900;
            color: #e85d26;
            text-decoration: none;
            letter-spacing: -1px;
        }

        .logo span {
            color: #c0392b;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .subscribe-btn {
            padding: 10px 24px;
            border: 1.5px solid #1a1a1a;
            border-radius: 25px;
            background: transparent;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            text-transform: uppercase;
            transition: all 0.3s;
        }

        .subscribe-btn:hover {
            background: #1a1a1a;
            color: #fff;
        }

        .search-icon {
            width: 40px;
            height: 40px;
            border: 1.5px solid #1a1a1a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background: transparent;
            transition: all 0.3s;
        }

        .search-icon:hover {
            background: #1a1a1a;
        }

        .search-icon:hover svg {
            stroke: #fff;
        }

        .search-icon svg {
            width: 18px;
            height: 18px;
            stroke: #1a1a1a;
        }

        /* Navigation */
        .nav {
            display: flex;
            justify-content: center;
            padding: 18px 40px;
            
        }

        .nav a {
            text-decoration: none;
            color: #000;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 0 20px;
            transition: color 0.3s;
        }

        .nav a:hover {
            color: #e85d26;
        }

        .nav a:not(:last-child) {
            border-right: 1px solid #000;
        }

        /* Main Content */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Hero Section */
        .hero {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 30px;
            padding: 30px 0;
        }

        .hero-main {
            position: relative;
            overflow: hidden;
            min-height: 480px;
            cursor: pointer;
        }

        .hero-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease-in-out;
        }

        .hero-main:hover img {
            transform: scale(1.03);
        }

        .hero-main .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
        }

        .hero-badge {
            position: absolute;
            top: 24px;
            left: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hero-badge-text {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
        }

        .hero-badge-icon {
            width: 36px;
            height: 36px;
            background: #fff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-badge-icon svg {
            width: 20px;
            height: 20px;
        }

        .hero-main h2 {
            color: #fff;
            font-size: 28px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .hero-main p {
            color: rgba(255,255,255,0.85);
            font-size: 15px;
            margin-bottom: 16px;
            max-width: 500px;
        }

        .hero-date {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
        }

        .hero-sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
            background: #F7F7F7;
            padding: 20px 30px;
            max-height: 640px;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: #e85d26 #f1f1f1;
        }

        /* Custom scrollbar for hero-sidebar */
        .hero-sidebar::-webkit-scrollbar {
            width: 5px;
        }

        .hero-sidebar::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }

        .hero-sidebar::-webkit-scrollbar-thumb {
            background: #e85d26;
            border-radius: 4px;
        }

        .hero-sidebar::-webkit-scrollbar-thumb:hover {
            background: #c0392b;
        }

        .hero-sidebar-card {
            padding: 20px 0;
            border-bottom: 1px solid #e0e0e0;
            transition: transform 0.2s ease-in-out;
            cursor: pointer;
        }

        .hero-sidebar-card:hover {
            transform: scale(1.02);
        }

        .hero-sidebar-card:last-child {
            border-bottom: none;
        }

        .article-meta {
            font-size: 13px;
            margin-bottom: 8px;
        }

        .article-meta .date {
            color: #e85d26;
            font-weight: 600;
        }

        .article-meta .source {
            color: #e85d26;
            font-weight: 600;
        }

        .article-meta .separator {
            color: #999;
            margin: 0 4px;
        }

        .hero-sidebar-card h3 {
            font-size: 17px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .hero-sidebar-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* Section Styles */
        .section {
            padding: 50px 0;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .section-title {
            font-size: 18px;
            
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .section-title span {
            font-weight: 400;
        }

        .view-all {
            color: #F7941D;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .view-all:hover {
            text-decoration: underline;
        }

        /* Scrollable Cards */
        .scroll-container {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            padding-bottom: 20px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .scroll-container::-webkit-scrollbar {
            height: 4px;
        }

        .scroll-container::-webkit-scrollbar-track {
            background: #f0f0f0;
            border-radius: 2px;
        }

        .scroll-container::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 2px;
        }

        .card {
            min-width: 380px;
            max-width: 380px;
            scroll-snap-align: start;
            flex-shrink: 0;
        }

        .card-image {
            width: 100%;
            height: 200px;
            
            overflow: hidden;
            margin-bottom: 16px;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .card:hover .card-image img {
            transform: scale(1.05);
        }

        .card .article-meta {
            margin-bottom: 8px;
        }

        .card h3 {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.4;
        margin-bottom: 18px;
        margin-top: 18px;
        }

        .card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 14px;
        }

        .continue-reading {
            color: #F7941D;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
        }

        .continue-reading:hover {
            text-decoration: underline;
        }

        /* Two Column Layout */
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1.6fr;
            gap: 30px;
        }

        .two-col.reverse {
            grid-template-columns: 1.3fr 1fr;
        }

        .article-list {
            display: flex;
            flex-direction: column;
            background: #F7F7F7;
            padding: 20px 30px;
            max-height: 670px;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: #e85d26 #f1f1f1;
        }

        /* Custom scrollbar for article-list */
        .article-list::-webkit-scrollbar {
            width: 5px;
        }

        .article-list::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }

        .article-list::-webkit-scrollbar-thumb {
            background: #e85d26;
            border-radius: 4px;
        }

        .article-list::-webkit-scrollbar-thumb:hover {
            background: #c0392b;
        }

        .article-list-item {
            padding: 24px 0;
            border-bottom: 1px solid #e0e0e0;
            transition: transform 0.2s ease-in-out;
            cursor: pointer;
        }

        .article-list-item:hover {
            transform: scale(1.02);
        }

        .article-list-item:first-child {
            padding-top: 0;
        }

        .article-list-item:last-child {
            border-bottom: none;
        }

        .article-list-item h3 {
            font-size: 17px;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 20px;
        }

        .article-list-item p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* Featured Card */
        .featured-card {
            position: relative;
            overflow: hidden;
            min-height: 420px;
        }

        .featured-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-card .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 36px;
        }

        .featured-card .badge {
            position: absolute;
            top: 20px;
            left: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .featured-card .badge-text {
            color: #fff;
            font-size: 13px;
            font-weight: 600;
        }

        .featured-card .badge-icon {
            width: 32px;
            height: 32px;
            background: #fff;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .featured-card .badge-icon svg {
            width: 18px;
            height: 18px;
        }

        .featured-card h3 {
            color: #fff;
            font-size: 22px;
            font-weight: 500;
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .featured-card p {
            color: rgba(255,255,255,0.85);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 14px;
        }

        .featured-card .date {
            color: #fff;
            font-size: 14px;
        }

        /* Dark Featured Card */
        .featured-card.dark {
            background: #1a1a1a;
        }

        .featured-card.dark .overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
        }

        /* Sustainability Section */
        .sustainability-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .sustainability-featured {
            position: relative;
           
            overflow: hidden;
            min-height: 400px;
        }

        .sustainability-featured img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sustainability-featured .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 36px;
        }

        .sustainability-featured .badge {
            position: absolute;
            top: 20px;
            left: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sustainability-featured .badge-text {
            color: #fff;
            font-size: 13px;
            font-weight: 600;
        }

        .sustainability-featured .badge-icon {
            width: 32px;
            height: 32px;
            background: #fff;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sustainability-featured .badge-icon svg {
            width: 18px;
            height: 18px;
        }

        .sustainability-featured h3 {
            color: #fff;
            font-size: 22px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .sustainability-featured .date {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
        }

        .sustainability-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sustainability-item {
            display: flex;
            gap: 20px;
        }

        .sustainability-item-content {
            flex: 1;
        }

        .sustainability-item-image {
            width: 180px;
            height: 120px;
            
            overflow: hidden;
            flex-shrink: 0;
        }

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

        .sustainability-item h3 {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 8px;
        }

        .sustainability-item p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: #fff;
            padding: 60px 40px 30px;
            margin-top: 40px;
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: #fff;
        }

        .footer-col a {
            display: block;
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 12px;
            transition: color 0.3s;
        }

        .footer-col a:hover {
            color: #fff;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid #333;
            text-align: center;
        }

        .footer-bottom p {
            color: #fff;
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
            }

            .two-col, .two-col.reverse {
                grid-template-columns: 1fr;
            }

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

            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 12px 20px;
            }

            .nav {
                flex-wrap: wrap;
                padding: 12px 20px;
                gap: 8px;
            }

            .nav a {
                padding: 0 12px;
                font-size: 11px;
            }

            .container {
                padding: 0 20px;
            }

            .card {
                min-width: 280px;
                max-width: 280px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 32px;
            }

            .subscribe-btn {
                padding: 8px 16px;
                font-size: 11px;
            }

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