* {
            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;
            flex: 1;
            justify-content: flex-start;
        }

        .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;
            border: none !important;
            outline: none !important;
            display: flex;
            justify-content: center;
        }

        .logo svg {
            border: none !important;
            outline: none !important;
        }

        .logo span {
            color: #c0392b;
        }

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

        .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.active {
            color: #ef4123;
        }

        .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 Redesign */
        .footer {
            background-color: #1b1b1b;
            background-image: url('img/footer_bg.png');
            background-size: 100% 100%;
            background-position: center;
            background-repeat: no-repeat;
            color: #fff;
            padding: 60px 40px 30px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .footer-left-logo {
            flex-shrink: 0;
        }

        .footer-logo {
            height: 80px;
            width: auto;
            display: block;
        }

        .footer-right-links {
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: flex-end;
        }

        .footer-links-row {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .footer-links-row a {
            color: #fff;
            text-decoration: underline;
            font-family: 'Inter', sans-serif;
            font-size: 14.5px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .footer-links-row a:hover {
            color: #ef4123;
        }

        .footer-separator-line {
            max-width: 1400px;
            margin: 30px auto 20px;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.15);
        }

        .footer-bottom-copyright {
            text-align: center;
        }

        .footer-bottom-copyright p {
            color: #ccc;
            font-family: 'Inter', sans-serif;
            font-size: 13.5px;
            margin: 0;
        }

        @media (max-width: 991px) {
            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-right-links {
                align-items: center;
            }

            .footer-links-row {
                justify-content: center;
                gap: 20px;
            }
        }

        /* 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;
            }
        }

        @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;
            }

            .slider-arrow {
                display: none !important;
            }
        }

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

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

        /* Slide-out Side Navigation Drawer */
        .side-drawer {
            position: fixed;
            top: 0;
            left: -320px; /* Hidden offscreen by default */
            width: 320px;
            height: 100vh;
            background: #fff;
            box-shadow: 2px 0 15px rgba(0,0,0,0.15);
            z-index: 1200;
            transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
        }

        .side-drawer.open {
            left: 0;
        }

        .drawer-close-btn {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 32px;
            background: none;
            border: none;
            cursor: pointer;
            color: #333;
            transition: color 0.2s;
            font-family: Arial, sans-serif;
            line-height: 1;
        }

        .drawer-close-btn:hover {
            color: #ef4123;
        }

        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-top: 20px;
        }

        .drawer-nav a {
            font-family: 'Inter Tight', 'Inter', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: #555;
            text-decoration: none;
            transition: color 0.2s, padding-left 0.2s;
        }

        .drawer-nav a:hover {
            color: #ef4123;
            padding-left: 8px;
        }

        /* Drawer Overlay */
        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(4px);
            z-index: 1150;
            display: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .drawer-overlay.open {
            display: block;
            opacity: 1;
        }

        /* Hero Main Slider styles */
        .slider-container {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 100%;
        }

        .slider-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            z-index: 1;
        }

        .slide.active {
            opacity: 1;
            z-index: 2;
        }

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

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px);
            border: none;
            color: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            transition: background 0.3s, transform 0.2s;
        }

        .slider-arrow:hover {
            background: #ef4123;
            transform: translateY(-50%) scale(1.1);
        }

        .prev-arrow {
            left: 20px;
        }

        .next-arrow {
            right: 20px;
        }

        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: #ef4123;
            width: 24px;
            border-radius: 5px;
        }

        /* Modal Styling */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            animation: fadeIn 0.3s forwards;
        }

        .modal-content {
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            width: 90%;
            max-width: 500px;
            position: relative;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            transform: scale(0.9);
            animation: scaleUp 0.3s forwards;
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            cursor: pointer;
            color: #666;
            transition: color 0.2s;
        }

        .modal-close:hover {
            color: #000;
        }

        .modal-content h3 {
            font-family: 'Inter Tight', sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #111;
        }

        .modal-content p {
            font-family: 'Inter Tight', sans-serif;
            color: #555;
            font-size: 15px;
            line-height: 1.5;
            margin-bottom: 24px;
        }

        .modal-content form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .modal-content input[type="email"] {
            padding: 14px 20px;
            border: 1.5px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.2s;
        }

        .modal-content input[type="email"]:focus {
            border-color: #e85d26;
        }

        .modal-submit-btn {
            background: #e85d26;
            color: #fff;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }

        .modal-submit-btn:hover {
            background: #d44d18;
        }

        .modal-message {
            margin-top: 15px;
            font-size: 14px;
            text-align: center;
            font-weight: 500;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        @keyframes scaleUp {
            to { transform: scale(1); }
        }

