/* Brand Colors */
:root {
    --cream: #f2eae0;
    --lime-green: #b1d34a;
    --medium-green: #709c5b;
    --dark-green: #2d602e;
    --white: #ffffff;
    --dark-text: #2d2d2d;
    --light-text: #666666;
}

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



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Morlivly Header */
.morlivly-header {
    background: var(--white);
    border-bottom: 1px solid rgba(177, 211, 74, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.morlivly-header .container {
    padding: 0 40px;
    max-width: 1400px;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-link {
    display: block;
    text-decoration: none;
}

.morlivly-nav-logo {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-link:hover .morlivly-nav-logo {
    transform: scale(1.05);
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 50px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 16px;
    padding: 12px 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--medium-green);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 8px;
    left: 0;
    background-color: var(--lime-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

    .nav-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }
    
    .nav-dropdown > a::before {
        content: '';
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid var(--dark-text);
        transition: all 0.3s ease;
        order: 2;
        margin-left: 0;
        flex-shrink: 0;
    }

.nav-dropdown:hover > a::before {
    border-top-color: var(--medium-green);
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 280px;
    list-style: none;
    padding: 15px 0;
    margin: 0;
    border: 1px solid rgba(177, 211, 74, 0.2);
    margin-top: 8px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--dark-text);
    font-size: 14px;
    border-radius: 0;
    margin: 0;
    transition: all 0.3s ease;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background-color: var(--lime-green);
    color: var(--white);
    padding-left: 30px;
}

.nav-search {
    margin-left: 20px;
    display: none;
    align-items: center;
}

.search-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    color: var(--dark-text);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    background-color: rgba(177, 211, 74, 0.1);
    color: var(--medium-green);
    transform: scale(1.1);
}

.search-button svg {
    width: 20px;
    height: 20px;
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
}

.nav-mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Adjust body to account for fixed header */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    padding-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--medium-green) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.brand-logos {
    margin-bottom: 30px;
}

.brand-collaboration {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(45, 96, 46, 0.15);
}

.paul-kaldi-logo {
    border: 3px solid var(--dark-green);
}

.morlivly-logo {
    border: 3px solid var(--lime-green);
    padding: 15px 25px; /* Extra padding to make it more prominent */
    box-shadow: 0 8px 30px rgba(177, 211, 74, 0.3); /* Enhanced shadow for prominence */
}

.brand-logo {
    display: block;
    object-fit: contain;
}

.paul-kaldi-img {
    height: 50px;
    width: 50px;
    border-radius: 8px;
}

.morlivly-img {
    height: 60px; /* Larger than Paul Kaldi to make it more prominent */
    width: auto;
    max-width: 180px;
}

.x-symbol {
    font-size: 28px;
    font-weight: 300;
    color: var(--dark-green);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--medium-green);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-tagline {
    font-size: 24px;
    color: var(--dark-green);
    margin-bottom: 30px;
    font-weight: 400;
    font-style: italic;
}

.product-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(45, 96, 46, 0.1);
}

.coffee-emoji {
    font-size: 36px;
}

.product-highlight p {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-green);
}

/* Hero CTA */
.hero-cta {
    margin-top: 30px;
}

.cta-button {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--medium-green) 100%);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(45, 96, 46, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(45, 96, 46, 0.4);
    background: linear-gradient(135deg, var(--medium-green) 0%, var(--dark-green) 100%);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.product-image {
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(45, 96, 46, 0.3);
    transition: transform 0.3s ease;
}

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

.coffee-visual {
    width: 200px;
    height: 200px;
    background: var(--dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(45, 96, 46, 0.2);
}

.coffee-bean {
    width: 100px;
    height: 130px;
    background: var(--lime-green);
    border-radius: 50%;
    position: relative;
}

.coffee-bean::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 80px;
    background: var(--dark-green);
    border-radius: 8px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--white);
}

.benefits h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-green);
    margin-bottom: 60px;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--cream);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 96, 46, 0.1);
    border-color: var(--lime-green);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--dark-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: var(--light-text);
    font-size: 16px;
    line-height: 1.6;
}

/* Story Section */
.story {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--medium-green) 0%, var(--dark-green) 100%);
    color: var(--white);
}

.story-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-text {
    text-align: center;
    max-width: 800px;
}

.story h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 600;
}

.story p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story blockquote {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--lime-green);
    font-style: italic;
    font-size: 20px;
    margin-top: 30px;
    line-height: 1.6;
}

/* Your Daily Adventure Section */
.adventure-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--lime-green) 100%);
}

.adventure-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.adventure-text {
    text-align: left;
}

.adventure-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--dark-green);
}

.adventure-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--dark-text);
    line-height: 1.6;
}

.adventure-video-container {
    display: flex;
    justify-content: center;
}

.adventure-video {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(45, 96, 46, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adventure-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(45, 96, 46, 0.5);
}

/* Farmer Spotlight Section */
.farmer-spotlight {
    padding: 80px 0;
    background-color: var(--cream);
}

.farmer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.farmer-image {
    text-align: center;
}

.farmer-photo {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(45, 96, 46, 0.2);
}

.farmer-text h2 {
    font-size: 36px;
    color: var(--dark-green);
    margin-bottom: 30px;
    font-weight: 600;
}

.farmer-highlight {
    background-color: var(--white);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 5px solid var(--lime-green);
}

.farmer-highlight h3 {
    font-size: 22px;
    color: var(--dark-green);
    margin-bottom: 10px;
    font-weight: 600;
}

.farmer-highlight p {
    color: var(--light-text);
    font-size: 16px;
    line-height: 1.6;
}

.farmer-text p {
    font-size: 18px;
    color: var(--dark-text);
    line-height: 1.7;
    margin-bottom: 25px;
}

.community-impact {
    margin-top: 30px;
}

.community-photo {
    width: 100%;
    max-width: 350px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(45, 96, 46, 0.1);
}

.community-impact p {
    font-size: 14px;
    color: var(--medium-green);
    font-style: italic;
    text-align: center;
    margin: 0;
}

/* Product Details */
.product-details {
    padding: 80px 0;
    background-color: var(--cream);
}

.product-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-specs h2 {
    font-size: 36px;
    color: var(--dark-green);
    margin-bottom: 30px;
    font-weight: 600;
}

.specs-list {
    list-style: none;
    font-size: 18px;
}

.specs-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(45, 96, 46, 0.1);
    color: var(--dark-text);
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list strong {
    color: var(--dark-green);
    font-weight: 600;
}

.wellness-benefits {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(45, 96, 46, 0.1);
}

.wellness-benefits h3 {
    font-size: 24px;
    color: var(--dark-green);
    margin-bottom: 20px;
    font-weight: 600;
}

.wellness-benefits p {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logo-container {
    background-color: var(--white);
    padding: 8px 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
}

.morlivly-footer-container {
    padding: 12px 20px; /* More prominent footer presence for Morlivly */
    border: 2px solid var(--lime-green);
}

.footer-logo {
    object-fit: contain;
}

.paul-kaldi-footer {
    height: 35px;
    width: 35px;
    border-radius: 5px;
}

.morlivly-footer {
    height: 40px; /* Slightly larger in footer too */
    width: auto;
    max-width: 120px;
}

.footer-x {
    color: var(--lime-green);
    font-size: 24px;
    font-weight: 300;
}

.brand-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.brand-info p {
    font-size: 18px;
    font-style: italic;
    color: var(--lime-green);
}

.collaboration-note p {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .brand-collaboration {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .logo-container {
        padding: 8px 15px;
    }
    
    .morlivly-logo {
        padding: 10px 20px;
    }
    
    .paul-kaldi-img {
        height: 40px;
        width: 40px;
    }
    
    .morlivly-img {
        height: 50px;
        max-width: 140px;
    }
    
    .footer-logos {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .footer-logo-container {
        padding: 6px 12px;
    }
    
    .morlivly-footer-container {
        padding: 8px 15px;
    }
    
    .paul-kaldi-footer {
        height: 30px;
        width: 30px;
    }
    
    .morlivly-footer {
        height: 35px;
        max-width: 100px;
    }
    
    .product-showcase {
        gap: 20px;
    }
    
    .product-image {
        width: 220px;
        height: 280px;
    }
    
    .story-content,
    .product-info,
    .footer-content,
    .farmer-content,
    .adventure-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .coffee-visual {
        width: 150px;
        height: 150px;
    }
    
    .coffee-bean {
        width: 80px;
        height: 100px;
    }
    
    .adventure-video {
        max-width: 100%;
    }
    
    .adventure-content h2 {
        font-size: 32px;
    }
    
    .adventure-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .adventure-text {
        text-align: center;
    }
    
    .farmer-photo,
    .community-photo {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-tagline {
        font-size: 20px;
    }
    
    .brand-collaboration {
        gap: 10px;
    }
    
    .logo-container {
        padding: 6px 12px;
    }
    
    .morlivly-logo {
        padding: 8px 15px;
    }
    
    .paul-kaldi-img {
        height: 35px;
        width: 35px;
    }
    
    .morlivly-img {
        height: 45px;
        max-width: 120px;
    }
    
    .x-symbol {
        font-size: 20px;
    }
    
    .footer-x {
        font-size: 20px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefits h2,
    .story h2,
    .adventure-content h2,
    .product-specs h2,
    .farmer-text h2 {
        font-size: 28px;
    }
    
    .adventure-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .product-image {
        width: 200px;
        height: 250px;
    }
    
    .farmer-photo {
        height: 250px;
    }
    
    .community-photo {
        height: 180px;
    }
}

/* Product Listing Section */
.product-listing {
    padding: 80px 0;
    background-color: var(--cream);
}

.product-listing h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--dark-green);
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(45, 96, 46, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(45, 96, 46, 0.15);
}

.product-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.product-info-card {
    padding: 30px;
}

.product-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.product-subtitle {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 25px;
    font-style: italic;
}

.product-details-list {
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.detail-label {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 14px;
}

.detail-value {
    color: var(--light-text);
    font-size: 14px;
    text-align: right;
    max-width: 60%;
}

.product-pricing {
    margin-bottom: 25px;
    text-align: center;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-green);
}

.currency {
    font-size: 20px;
    font-weight: 600;
}

/* Flavor Profile Section */
.flavor-profile {
    background-color: var(--cream);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.flavor-profile p {
    margin: 5px 0;
    font-size: 14px;
    color: var(--dark-text);
}

.tasting-notes {
    color: var(--dark-green) !important;
    font-weight: 500;
}

/* Brewing Guide Section */
.brewing-guide {
    background-color: rgba(177, 211, 74, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.brewing-guide h4 {
    font-size: 16px;
    color: var(--dark-green);
    margin-bottom: 10px;
    font-weight: 600;
}

.brewing-details p {
    margin: 5px 0;
    font-size: 13px;
    color: var(--dark-text);
    line-height: 1.4;
}

.brewing-details strong {
    color: var(--medium-green);
    font-weight: 600;
}

/* Certifications Section */
.certifications-benefits {
    margin-bottom: 30px;
}

.certifications-benefits h3 {
    font-size: 24px;
    color: var(--dark-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.certifications-benefits p {
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--dark-text);
}

.certifications-benefits strong {
    color: var(--medium-green);
    font-weight: 600;
}

.amount {
    margin-left: 5px;
}

.product-actions {
    text-align: center;
}

.buy-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--lime-green) 0%, var(--medium-green) 100%);
    color: var(--white);
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(177, 211, 74, 0.3);
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(177, 211, 74, 0.4);
    background: linear-gradient(135deg, var(--medium-green) 0%, var(--lime-green) 100%);
    text-decoration: none;
    color: var(--white);
}

.alternative-store {
    margin-top: 15px;
    text-align: center;
}

.alt-store-link {
    font-size: 12px;
    color: var(--light-text);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.alt-store-link:hover {
    color: var(--medium-green);
    text-decoration: underline;
}

/* Product Listing Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-listing h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .product-info-card {
        padding: 25px;
    }
    
    .product-info-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .product-listing h2 {
        font-size: 28px;
    }
    
    .product-info-card {
        padding: 20px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .flavor-profile {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .brewing-guide {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .brewing-guide h4 {
        font-size: 14px;
    }
    
    .brewing-details p {
        font-size: 12px;
    }
    
    .certifications-benefits h3 {
        font-size: 20px;
    }
    
    .certifications-benefits p {
        font-size: 14px;
    }
    
    .detail-value {
        max-width: 50%;
        font-size: 13px;
    }
    
    .detail-label {
        font-size: 13px;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .morlivly-header .container {
        padding: 0 20px;
    }
    
    .nav-content {
        height: 70px;
    }
    
    .morlivly-nav-logo {
        height: 35px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(177, 211, 74, 0.2);
        margin-right: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0 30px;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(177, 211, 74, 0.1);
    }
    
    .nav-links a {
        display: block;
        padding: 18px 0;
        border-radius: 0;
        width: 100%;
        font-size: 16px;
    }
    
    .nav-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a:hover {
        color: var(--medium-green);
        background-color: rgba(177, 211, 74, 0.05);
        padding-left: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-dropdown > a::before {
        order: 2;
        margin-left: 0;
        flex-shrink: 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        margin-left: 0;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 0;
        margin-top: 0;
        padding-left: 30px;
    }
    
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        max-height: 200px;
        background: rgba(177, 211, 74, 0.05);
        border-radius: 8px;
        margin-top: 8px;
    }
    
    .dropdown-menu a {
        padding: 12px 20px;
        font-size: 14px;
        color: var(--medium-green);
        margin-left: 0;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(177, 211, 74, 0.2);
        color: var(--dark-text);
        padding-left: 25px;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
    
    .nav-search {
        margin-left: 15px;
    }
    
    .search-button {
        padding: 6px;
    }
    
    .search-button svg {
        width: 18px;
        height: 18px;
    }
    
    .nav-mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    body {
        padding-top: 70px;
    }
}
}