    @font-face {
      font-family:zai ;
      src: url(fonts/zai_CofFEeSackfulStamp.ttf);
    }
    @font-face {
      font-family: greater;
      src: url(fonts/GreaterTheory.otf);
    }
    @font-face {
      font-family: hind;
      src: url(fonts/Hind-Regular.ttf);
    }
    
    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #f5f5f5;
            color: #333;
        }

        /* Header Styles */
        header {
          font-family: hind;
            background-color:rgb(0 0 0 / 51%);
            padding: 20px 50px;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-circle {
            width: 50px;
            height: 50px;
            border: 2px solid #5a9f6f;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .logo-text {
            color: white;
            font-size: 24px;
            font-weight: bold;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #5a9f6f;
        }

        .nav-links a.active {
            color: #5a9f6f;
        }

        .nav-icons {
            display: flex;
            gap: 15px;
        }
        .icon-btn {
            width: 35px;
            height: 35px;
            border: 1px solid #4D8B55;
            border-radius: 50%;
            display: flex;
            padding: 6px;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .icon-btn:hover {
            background-color: #5a9f6f;
            border-color: #5a9f6f;
            transform: scale(1.1);
        }

        /* Hero Section */
        .hero {
            background-image:url(pic/product/image\ 23.png);
            background-size: cover;
            width: 100%;
            height: 532px;
            background-position: center;
            padding: 200px 50px 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            font-size: 300px;
            opacity: 0.1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.05); }
        }

        .hero h1 {
          font-family: "zai";
            color: white;
            font-size: 128px;
            font-style: normal;
            font-weight: 400;
            line-height: 48px;
            text-transform: uppercase;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .breadcrumb {
          font-family: hind;
            color: #999;
            margin-top: 50px;
            animation: fadeIn 1.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;
        }

        .breadcrumb span {
            color: #5a9f6f;
        }

        /* Main Content */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 50px 20px;
            display: flex;
            gap: 40px;
        }

        /* Sidebar */
        .sidebar {
          font-family: hind;
            width: 280px;
            flex-shrink: 0;
        }

        .search-box {
            position: relative;
            margin-bottom: 30px;
            animation: fadeInLeft 0.8s ease;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .search-box input {
            width: 100%;
            padding: 15px 45px 15px 20px;
            border: none;
            background-color: #5a9f6f;
            color: white;
            border-radius: 5px;
            font-size: 14px;
        }

        .search-box input::placeholder {
            color: rgba(255, 255, 255, 0.8);
        }

        .search-box button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            cursor: pointer;
        }

        .filter-section {
            background: white;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            animation: fadeInLeft 1s ease;
        }

        .filter-section h3 {
            font-size: 16px;
            margin-bottom: 20px;
            color: #333;
        }

        .category-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .category-item:hover {
            color: #5a9f6f;
        }

        .price-slider {
            margin: 20px 0;
        }

        .price-range {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 14px;
            color: #666;
        }

        .slider {
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #5a9f6f, #5a9f6f);
            border-radius: 5px;
            margin-bottom: 20px;
        }

        .filter-btn {
            width: 100%;
            padding: 12px;
            background-color: #5a9f6f;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .filter-btn:hover {
            background-color: #4a8f5f;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(90, 159, 111, 0.3);
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            padding: 8px 16px;
            background-color: #f0f0f0;
            border-radius: 20px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tag:hover {
            background-color: #5a9f6f;
            color: white;
            transform: scale(1.05);
        }

        /* Products Section */
        .products-section {
            flex: 1;
        }

        .products-header {
          font-family: hind;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            animation: fadeInRight 0.8s ease;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .sort-dropdown {
            padding: 10px 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background: white;
            cursor: pointer;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease;
            animation-fill-mode: both;
        }

        .product-card:nth-child(1) { animation-delay: 0.1s; }
        .product-card:nth-child(2) { animation-delay: 0.2s; }
        .product-card:nth-child(3) { animation-delay: 0.3s; }
        .product-card:nth-child(4) { animation-delay: 0.4s; }
        .product-card:nth-child(5) { animation-delay: 0.5s; }
        .product-card:nth-child(6) { animation-delay: 0.6s; }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .product-image {
            position: relative;
            height: 280px;
            background-color: #F6F1EE;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .product-image img {
            max-width: 100%;
            max-height: 100%;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .sale-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: #e74c3c;
            color: white;
            padding: 8px 15px;
            border-radius: 50%;
            font-size: 12px;
            font-weight: bold;
            z-index: 20;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .product-info {
            padding: 20px;
            font-family: hind;
        }

        .stars {
            color: #ffd700;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .product-name {
          font-family: greater;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .product-price {
            font-size: 18px;
            color: #5a9f6f;
            font-weight: bold;
        }

        .price-old {
            text-decoration: line-through;
            color: #999;
            margin-left: 10px;
            font-size: 14px;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .page-btn {
            width: 40px;
            height: 40px;
            border: 1px solid #ddd;
            background: white;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .page-btn:hover {
            background-color: #5a9f6f;
            color: white;
            border-color: #5a9f6f;
        }

        .page-btn.active {
            background-color: #5a9f6f;
            color: white;
            border-color: #5a9f6f;
        }

        /* Footer */
        footer {
          font-family: hind;
            background-color: #1a1a1a;
            color: white;
            padding: 60px 50px 30px;
        }

        .newsletter {
            max-width: 600px;
            margin-bottom: 60px;
            animation: fadeIn 1s ease;
        }

        .newsletter h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .newsletter p {
            color: #999;
            margin-bottom: 20px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: 1px solid #333;
            background-color: #2a2a2a;
            color: white;
            border-radius: 5px;
        }

        .newsletter-form button {
            padding: 15px 30px;
            background-color: #5a9f6f;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background-color: #4a8f5f;
            transform: scale(1.05);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .footer-section p, .footer-section a {
            color: #999;
            line-height: 1.8;
            text-decoration: none;
            display: block;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #5a9f6f;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            border: 1px solid #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: #5a9f6f;
            border-color: #5a9f6f;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            color: #666;
        }

        .footer-links {
            display: flex;
            gap: 30px;
        }

        .footer-links a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #5a9f6f;
        }

        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

































        /* home page */

        .hero-section {
            position: relative;
            height: 131vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        /* Coffee beans background */
        .background-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url(pic/home/image\ 4.png);
            background-size: cover;
            background-position: center;
            filter: brightness(0.3);
            z-index: 1;
        }

        /* Header */
        .header2 {
            position: relative;
            z-index: 10;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 70px 60px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            align-items: center;
            color: white;
            font-size: 14px;
        }

        .social-links span {
            margin-right: 10px;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .logo {
            position: relative;
            transform: translateX(-50%);
            color: white;
            text-align: center;
        }

        .logo-text {
            font-size: 42px;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .logo-subtext {
            font-size: 10px;
            letter-spacing: 3px;
            margin-top: -5px;
        }

        .header-icons {
            display: flex;
            gap: 15px;
        }

        .header-icon {
            width: 35px;
            height: 35px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
        }

        .header-icon:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Navigation */
        .navigation {
            position: relative;
            z-index: 10;
            display: flex;
            justify-content: center;
            gap: 50px;
            padding: 20px;
            margin-top: 20px;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 1px;
            transition: color 0.3s;
            font-weight: 500;
        }

        .nav-link.active {
            color: #6fb96f;
        }

        .nav-link:hover {
            color: #6fb96f;
        }

        /* Content */
        .content {
            position: relative;
            z-index: 10;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .title {
            text-align: center;
            margin-bottom: 60px;
        }

        .title-natural {
            font-size: 72px;
            color: #6fb96f;
            font-weight: 300;
            letter-spacing: 8px;
            text-transform: uppercase;
            margin-bottom: -10px;
        }

        .title-main {
            font-size: 86px;
            color: white;
            font-weight: bold;
            letter-spacing: 10px;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* Coffee beans image */
        .coffee-beans {
            position: relative;
            width: 100%;
            max-width: 500px;
            margin-top: -40px;
        }

        .beans-image {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
        }

        /* Green wave background */
        .green-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 170px;
            background-color:#3F8C4C ;
            z-index: 5;
        }



        
        .about-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 80px 100px;
            background-color: #fafafa;
            gap: 80px;
        }

        /* Left Content */
        .content-left {
            flex: 1;
            max-width: 550px;
        }

        .section-label {
            font-size: 12px;
            color: #888;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .main-title {
            font-size: 48px;
            font-weight: bold;
            color: #1a1a1a;
            line-height: 1.2;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .description {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        /* Features */
        .features {
            display: flex;
            gap: 50px;
            margin-bottom: 35px;
        }

        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 15px;
            color: #6fb96f;
        }

        .feature-icon svg {
            width: 100%;
            height: 100%;
        }

        .feature-text {
            font-size: 13px;
            color: #444;
            font-weight: 500;
        }

        /* Rating */
        .rating-section {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 35px;
        }

        .stars {
            display: flex;
            gap: 3px;
        }

        .star {
            color: #ffd700;
            font-size: 18px;
        }

        .rating-text {
            font-size: 14px;
            color: #666;
        }

        /* Buttons */
        .buttons {
            display: flex;
            gap: 20px;
        }

        .btn {
            padding: 14px 35px;
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary {
            background-color: #6fb96f;
            color: white;
            border-radius: 4px;
        }

        .btn-primary:hover {
            background-color: #5fa55f;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(111, 185, 111, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            color: #333;
            border: 2px solid #ddd;
            border-radius: 4px;
        }

        .btn-secondary:hover {
            border-color: #6fb96f;
            color: #6fb96f;
            transform: translateY(-2px);
        }

        /* Right Image */
        .content-right {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }

        .image-container {
            position: relative;
            width: 100%;
            max-width: 500px;
        }

        .coffee-image {
            width: 100%;
            height: auto;
            
            object-fit: cover;
         
        }


          .varieties-section {
            padding: 80px 50px;
            background-color: #ffffff;
        }

        /* Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 42px;
            font-weight: bold;
            color: #1a1a1a;
            margin-bottom: 15px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .section-subtitle {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Coffee Grid */
        .coffee-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .coffee-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .coffee-card:hover {
            transform: translateY(-10px);
        }

        /* Coffee Image */
        .coffee-image-container {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s ease;
        }

        .coffee-card:hover .coffee-image-container {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .coffee-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Icon */
        .coffee-icon {
            width: 45px;
            height: 45px;
            margin-bottom: 15px;
            color: #6fb96f;
        }

        .coffee-icon svg {
            width: 100%;
            height: 100%;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }

        /* Coffee Name */
        .coffee-name {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        /* Coffee Description */
        .coffee-description {
            font-size: 13px;
            color: #777;
            line-height: 1.6;
        }


         .banner-section {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            height: 400px;
            overflow: hidden;
        }

        /* Left Panel - Coffee Beans */
        .panel-left {
            position: relative;
            overflow: hidden;
        }

        .panel-left img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Center Panel - Content */
        .panel-center {
            background: linear-gradient(135deg, #6fb96f 0%, #5a9b5a 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 60px 50px;
            position: relative;
        }

        /* Coffee pattern overlay */
        .panel-center::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .label {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }

        .main-heading {
            position: relative;
            z-index: 1;
            margin-bottom: 25px;
        }

        .main-heading h1 {
            font-size: 52px;
            font-weight: bold;
            color: white;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .description {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.7;
            margin-bottom: 30px;
            max-width: 320px;
            position: relative;
            z-index: 1;
        }

        .cta-button {
            padding: 14px 40px;
            background-color: white;
            color: #6fb96f;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .cta-button:hover {
            background-color: #f5f5f5;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        /* Right Panel - Woman with Coffee */
        .panel-right {
            position: relative;
            overflow: hidden;
        }

        .panel-right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .banner-section {
                height: 350px;
            }

            .panel-center {
                padding: 40px 35px;
            }

            .main-heading h1 {
                font-size: 42px;
            }

            .description {
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            .banner-section {
                grid-template-columns: 1fr;
                height: auto;
            }

            .panel-left,
            .panel-right {
                display: none;
            }

            .panel-center {
                padding: 60px 40px;
                align-items: center;
                text-align: center;
            }

            .description {
                max-width: 100%;
            }

            .main-heading h1 {
                font-size: 38px;
            }
        }

        @media (max-width: 480px) {
            .panel-center {
                padding: 50px 30px;
            }

            .main-heading h1 {
                font-size: 32px;
            }

            .description {
                font-size: 13px;
            }

            .cta-button {
                padding: 12px 35px;
                font-size: 13px;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .coffee-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 50px;
            }
        }

        @media (max-width: 640px) {
            .varieties-section {
                padding: 60px 30px;
            }

            .section-title {
                font-size: 32px;
            }

            .coffee-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .coffee-image-container {
                width: 200px;
                height: 200px;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .about-section {
                padding: 60px 50px;
                gap: 50px;
            }

            .main-title {
                font-size: 38px;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                flex-direction: column;
                padding: 40px 30px;
                gap: 40px;
            }

            .content-left {
                max-width: 100%;
            }

            .main-title {
                font-size: 32px;
            }

            .features {
                gap: 30px;
            }

            .buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .content-right {
                justify-content: center;
            }

            .image-container {
                max-width: 400px;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header {
                padding: 15px 30px;
            }

            .social-links span {
                display: none;
            }

            .navigation {
                gap: 20px;
                flex-wrap: wrap;
            }

            .title-natural {
                font-size: 42px;
            }

            .title-main {
                font-size: 48px;
            }

            .coffee-beans {
                max-width: 300px;
            }
        }
