/* CSS Reset & Variables */
:root {
    --primary-color: #333333;
    --accent-color: #dcb14a;
    /* Golden color from cup */
    --bg-cream: #FFF8E1;
    --bg-yellow: #FDE7A4;
    --bg-gradient: linear-gradient(180deg, #FFF8E1 0%, #FDE7A4 100%);
    --text-color: #555;
    --white: #ffffff;
    --font-main: 'Kanit', sans-serif;
    --green-btn: #5dc268;
}

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

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--primary-color);
    line-height: 1.6;
    background-color: var(--white);
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* .img-deliver {
    width: 960px;
} */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.logo-item {
    width: auto;
    max-height: 62px !important;
    display: block;
}

.container {
    max-width: 1366px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Header */
.site-header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Subtle shadow like typical sites */
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 35px;
    width: auto;
}

.brand-name {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
    /* Ensure alignment */
}

.main-nav li {
    position: relative;
    /* For dropdown positioning */
}

.main-nav a {
    font-weight: 500;
    font-size: 16px;
    color: #888;
    display: block;
    padding: 10px 0;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a.active {
    color: #0170b9;
    font-weight: 600;
}

/* Dropdown Menu Styles */
.main-nav .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 100;
    flex-direction: column !important;
    /* Override flex row */
    gap: 0 !important;
}

.dropdown li {
    width: 100%;
}

.dropdown a {
    padding: 10px 20px;
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    text-align: left;
}

.dropdown a:hover {
    background: #f9f9f9;
    color: var(--accent-color);
}

/* Hover effect only for Desktop */
@media (min-width: 901px) {
    .has-dropdown:hover .dropdown {
        display: flex;
    }
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    width: 100%;
}

.hero-image img {
    width: 100%;
    object-fit: cover;
}

/* Features Section */
.features-section {
    background: url('../images/BG1.jpg') no-repeat center center/cover;
    padding: 150px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    width: 160px;
    height: 160px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    max-height: 100%;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
}

.feature-item p {
    font-size: 15px;
    color: #312e2f;
    font-weight: 500;
}

/* Why Choose Section */
.why-choose-section {
    position: relative;
    background: #fff;
    /* Could be an image in the design */
    overflow: hidden;
    padding: 60px 0;
}

.container-split {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    position: relative;
    gap: 40px;
}

/* Mimic the video/banner split */
.why-content {
    flex: 0 0 60%;
    position: relative;
    background: transparent;
    min-height: auto;
    display: block;
    /* Optional styling */
    overflow: hidden;
}

/* Responsive Youtube Embed */
/* Responsive Youtube Link Wrapper */
.video-container {
    position: relative;
    width: 100%;
    /* 16:9 Aspect Ratio */
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.why-product {
    flex: 1;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.why-product img {
    width: 280px;
    /* Increased slightly to match scale */
    max-width: 100%;
}

.btn-green {
    background-color: var(--green-btn);
    color: white;
    padding: 10px 40px;
    border-radius: 5px;
    font-size: 18px;
    margin-top: -20px;
    /* Pull up to cup */
    position: relative;
    z-index: 11;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-green:hover {
    background-color: #4caa56;
}

/* Products Section */
.products-section {
    background: url('../images/BG2.jpg') no-repeat center center/cover;
    padding: 60px 0 80px;
    text-align: center;
}

/* Widen container for products to fit 5 items */
.products-section .container {
    max-width: 1400px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 50px;
    color: #085ba8;
    position: relative;
    display: inline-block;
}

/* Decoration lines for title if needed, skipping for now */

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: start;
}

.product-item {
    background: #fff;
    padding: 20px;
    /* Add padding to look like cards or transparent? Design implies transparent but aligned */
    background: transparent;
    width: 100%;
    /* Let grid control width */
    text-align: center;
}

.product-item img {
    /* width: 60%; */
    margin-bottom: 15px;
    transition: transform 0.3s;
    margin-left: auto;
    margin-right: auto;
}

.product-item:hover img {
    transform: translateY(-10px) scale(1.05);
}

.product-item h4 {
    font-size: 16px;
    color: #444;
    line-height: 1.4;
}

/* Social Section */
.social-section {
    padding: 60px 0;
    background: #fff;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.social-col {
    text-align: center;
}

.social-col h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #666;
}

.btn-ig {
    display: inline-block;
    background: #3f729b;
    /* Insta blueish or use gradient */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Simulated Instagram Grid */
.ig-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.ig-feed-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
    transition: opacity 0.3s, transform 0.3s;
}

.ig-feed-grid img:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* FB Container */
.fb-page-container {
    display: flex;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* Footer */
.site-footer {
    border-top: 5px solid #ccc;
    padding-top: 40px;
    background: #fff;
    color: #333;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #222;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #555;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #000;
}

.contact-col p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #555;
}

.social-icons a {
    font-size: 20px;
    margin-right: 15px;
    color: #555;
}

.cert-col {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.cert-col img {
    width: 60px;
}

.logo-col img {
    width: 150px;
    margin-bottom: 15px;
}

.logo-col p {
    font-style: italic;
    color: #777;
    font-size: 14px;
}

.footer-bottom {
    background: #333;
    /* Dark grey */
    color: #ccc;
    text-align: center;
    padding: 15px 0;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .container-split {
        flex-direction: column;
        text-align: center;
    }

    .why-content {
        width: 100%;
        margin-bottom: 30px;
    }

    .why-product {
        width: 100%;
        margin-left: 0;
    }

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

    .social-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fb-page-container iframe {
        max-width: 100%;
    }

    .product-detail-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px;
        width: 100% !important;
        max-width: 100%;
    }

    .product-gallery,
    .product-info {
        width: 100%;
    }

    .product-gallery {
        margin-bottom: 30px;
    }

    .product-gallery .main-image {
        padding: 10px;
        margin-bottom: 20px;
    }

    .product-info {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
        width: 100% !important;
        box-sizing: border-box;
        background: #fff;
        padding: 40px 25px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .product-meta {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
        padding-bottom: 30px;
        border-bottom: 1px solid #f0f0f0;
    }

    .product-meta .main-image {
        padding: 0;
        margin-bottom: 20px;
        width: 200px !important;
    }

    .product-size {
        font-weight: 500;
        font-size: 16px;
        color: var(--primary-color);
    }

    .product-description {
        padding-top: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .product-title {
        font-size: 26px;
        margin-bottom: 20px;
        color: #085ba8;
        text-align: center;
    }

    .product-description h3 {
        font-size: 20px;
        margin-bottom: 20px;
        color: #085ba8;
    }

    .product-info .check-list {
        text-align: left;
        display: block;
        max-width: 100%;
        margin-top: 15px;
        padding-left: 0;
    }

    .check-list li {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .product-full-details {
        margin-top: 30px;
        padding-top: 20px;
        text-align: center;
    }

    .section-title-left {
        text-align: center;
    }

    .section-title-left:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .amino-tags {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: left;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border-top: 1px solid #eee;
        background: #f9f9f9;
        display: none;
        min-width: 100%;
        padding-left: 0;
    }

    .dropdown a {
        padding-left: 30px;
    }

    .has-dropdown.active .dropdown {
        display: flex;
    }

    .map-section iframe {
        height: 350px;
    }

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

    .about-grid {
        flex-direction: column;
        gap: 30px;
    }

    .about-grid.reverse-mobile {
        flex-direction: column-reverse;
    }

    .delivery-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px;
    }

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

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

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

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

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

    .brand-name {
        font-size: 18px;
    }

    .logo img {
        height: 30px !important;
    }

    .section-title {
        font-size: 28px;
    }

    .product-title {
        font-size: 28px;
    }

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

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

/* Product Detail Styles */
.breadcrumbs-section {
    border-bottom: 1px solid #eee;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: #888;
    line-height: 1.4;
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.product-detail-section {
    padding: 60px 0;
    background-color: #f7f4ed;
    overflow: hidden;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.main-image {
    /* background: #fff; */
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); */
    display: flex;
    justify-content: center;
}

.main-image img {
    max-width: 100%;
    max-height: 500px;
}

.product-cat {
    display: inline-block;
    padding: 5px 12px;
    background: var(--bg-yellow);
    color: #a67c00;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
    font-weight: 500;
}

.product-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.product-meta {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.product-description h3 {
    font-size: 20px;
    color: #085ba8;
    margin-bottom: 15px;
}

.product-description p {
    margin-bottom: 15px;
    color: #555;
}

.product-action {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: #fff;
}

/* Expanded details */
.product-full-details {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.amino-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.amino-tags span {
    background: #f0f0f0;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    color: #555;
}

.related-products {
    padding: 60px 0;
}


/* Delivery Page Styles */
.delivery-section {
    background-color: #f6f4ed;
    padding-bottom: 35px;
    padding-top: 35px;
}

.page-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.delivery-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    align-items: center;
}

.delivery-info-card,
.contact-delivery-card {
    background: #fff;
    padding: 30px;
    border-radius: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.icon-wrapper {
    font-size: 50px;
    color: #dd322a;
    margin-bottom: 20px;
}

.highlight-delivery {
    font-size: 20px;
    color: #085ba8;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 20px;
}

.area-list {
    text-align: left;
    display: inline-block;
    color: #555;
}

.area-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.area-list li i {
    color: #dd322a;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.delivery-note {
    margin-top: 20px;
    font-size: 14px;
    color: #999;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.online-channels {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.channel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    transition: transform 0.2s;
}

.channel-btn:hover {
    transform: translateY(-3px);
}

.line-btn {
    background-color: #06C755;
}

.fb-btn {
    background-color: #0084FF;
}

.retail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.retail-item {
    background: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    border: 1px solid #eee;
}

/* Contact Page Styles */
.contact-section {
    background-color: #fff4d7;
    padding-top: 55px;
    padding-bottom: 35px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Balanced columns */
    gap: 60px;
    align-items: center;
    /* Center vertically in Row */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item .icon {
    width: 60px;
    height: 60px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-color);
}

.contact-item h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 18px;
    color: #555;
    font-weight: 500;
}

.social-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-contact-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    background: #f9f9f9;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    transition: transform 0.2s, background 0.2s;
    border: 1px solid #eee;
}

.social-contact-btn i {
    font-size: 24px;
    width: 30px;
    text-align: center;
}

.social-contact-btn.fb i {
    color: #1877f2;
}

.social-contact-btn.line i {
    color: #06c755;
}

.social-contact-btn.ig i {
    color: #e1306c;
}

.social-contact-btn:hover {
    transform: translateX(10px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-social-block {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    text-align: center;
    /* Center content horizontally in Column */
}

.social-qr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.social-contact-item a {
    display: block;
    transition: transform 0.3s ease;
}

.social-contact-item a:hover {
    transform: translateY(-5px);
}

.social-contact-item h2 {
    font-size: 16px;
    margin-top: 10px;
    color: var(--primary-color);
}

.qr-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    border: 1px solid #eee;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Contact Social Channel Items */
.social-contact-item {
    text-align: center;
    padding: 15px;
    transition: transform 0.3s;
}

.social-contact-item:hover {
    transform: translateY(-5px);
}

.qr-image {
    max-width: 175px;
    object-fit: contain;
    margin: 0 auto 15px;
    /* border: 1px solid #eee; */
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
}

.social-contact-item h2 {
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 10px;
}

.bg-contact {
    background: url('../images/aboutus/about-banner.jpg') no-repeat bottom center;
    background-size: cover;
    color: white;
    padding: 100px 0;
}

.bg-contact .page-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 48px;
    font-weight: 600;
}

.bg-contact .lead {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 20px;
}

/* About Us Page Styles */

/* Utilities */
.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.pt-5 {
    padding-top: 3rem;
}

.bg-light {
    background-color: #f9f9f9;
    padding: 55px;
}

.bg-cream {
    background-color: #f6f4ed;
}

.border-top {
    border-top: 1px solid #eee;
}

/* Page Banner */
.page-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* max-height: 400px; */
}

/* About Section Enhancements */
.about-block-wrapper {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#what-is-soygurt {
    background-color: #ffffff;
    padding-top: 40px;
}

#pre-pro-biotic {
    background-color: #fff9e6;
    /* Soft Soy Cream */
    border-top: 1px solid #fff2cc;
    border-bottom: 1px solid #fff2cc;
}

#amino-acids {
    background-color: #f4f9ff;
    /* Soft Brand Blue */
}

#certificates {
    background-image: url('../images/aboutus/BG4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    border-top: 1px solid #f0f0f0;
}

#certificates:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    /* Smooth overlay for readability */
    z-index: 1;
}

#certificates .container {
    position: relative;
    z-index: 2;
}


.about-block {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-img img {
    max-width: 100%;
    border-radius: 10px;
}

.about-text h2 {
    color: #085ba8;
    font-size: 32px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #FFD700;
}

.about-text p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Adjusting lists for the updated look */
.check-list li,
.dot-list li,
.styled-list li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.check-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3bb54a;
    font-weight: bold;
}

.cert-logo {
    max-width: 550px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.highlight-text {
    background: rgb(46 215 122 / 10%);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #3bb54a;
    margin: 25px 0;
    display: inline-block;
}

/* Amino grid styling inside About page */
#amino-acids .amino-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

#amino-acids .amino-item {
    background: #ffffff;
    padding: 25px 15px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

#amino-acids .amino-item:nth-child(3n+1) {
    border-top: 5px solid #085ba8;
    background-color: #f7fbff;
}

#amino-acids .amino-item:nth-child(3n+2) {
    border-top: 5px solid #dcb14a;
    background-color: #fffdf5;
}

#amino-acids .amino-item:nth-child(3n) {
    border-top: 5px solid #5dc268;
    background-color: #f8fff9;
}

#amino-acids .amino-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

#amino-acids .amino-item h4 {
    font-size: 17px;
    color: #085ba8;
    margin-bottom: 12px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#amino-acids .amino-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* About Bottom Image Section */
.about-bottom-image {
    width: 100%;
    background-color: #FDE7A4;
    /* Soy background to match image edges if any */
}

.about-bottom-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .about-grid.reverse-mobile {
        flex-direction: column-reverse;
    }

    .section-title-left:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .contact-grid,
    .delivery-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 30px;
        width: 100%;
    }

    .delivery-info-card,
    .contact-delivery-card {
        height: auto !important;
    }

    #amino-acids .amino-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px;
    }

    .contact-social-block {
        width: 100%;
        padding: 30px 15px;
        box-sizing: border-box;
    }

    .social-qr-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        gap: 25px;
    }

    .retail-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .cert-logo {
        max-width: 80%;
        /* Smaller on mobile for better fit */
    }
}