/* Corporate Design System */
:root {
    --primary-color: #1B5E20;
    /* Darker, sharper Forest Green */
    --secondary-color: #E65100;
    /* Deep Orange/Gold for high contrast */
    --accent-color: #2E7D32;
    --text-color: #1a1a1a;
    /* Darker near-black for sharper text */
    --light-bg: #f1f8e9;
    /* Soft, subtle light green background */
    --white: #FFFFFF;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    scroll-behavior: smooth;
    /* Bolder Light Green Background */
    background-color: var(--light-bg);
    background-image: none;
    background-attachment: scroll;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

/* Section Card (For Headers) */
.section-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
    text-align: center;
}

.section-card .section-title {
    margin-bottom: 15px;
}

.section-card .section-subtitle {
    margin-bottom: 0;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.7rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 40px;
    font-weight: 500;
}

.center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    background-image: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    overflow: hidden;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    pointer-events: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    /* Maximum bold for branding */
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.2px;
    /* Positive spacing for extra clarity at high weight */
}

.logo .text-primary {
    color: #003300;
    /* Pure deep green */
}

.logo .text-secondary {
    color: #a32a00;
    /* Pure deep vibrant orange */
}

.logo-img {
    height: 40px;
    width: auto;
}

.pt-text {
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--text-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    /* Sharper weight */
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a.active {
    color: var(--primary-color);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    padding: 3px;
    border-radius: 50px;
    margin-left: 25px;
    border: 1px solid rgba(46, 125, 50, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.lang-btn {
    background: none;
    border: none;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.lang-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 3px 12px rgba(46, 125, 50, 0.3);
}

.lang-btn:not(.active):hover {
    background-color: rgba(46, 125, 50, 0.08);
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* Navbar Scrolled State for Switcher */
.navbar.scrolled .lang-switcher {
    background: rgba(46, 125, 50, 0.05);
    border-color: rgba(46, 125, 50, 0.1);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('assets/hero_pellets.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 60px;
    /* Offset for fixed navbar */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.4);
    /* Reduced opacity for better photo visibility */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* About Section */
.about {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.about-card {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values {
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.value-item i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.value-item span {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Vision & Mission */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.vm-card:nth-child(1) {
    background: var(--white);
    border-bottom: 4px solid var(--primary-color);
}

.vm-card:nth-child(2) {
    background: var(--white);
    border-bottom: 4px solid var(--secondary-color);
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Glassmorphism Card for Hero */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 60px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    display: inline-block;
    /* Wraps content tightly */
    max-width: 90%;
    /* Responsive wrapper */
}

.vm-card h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.vm-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.vm-card h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.mission-list {
    list-style: none;
    text-align: left;
}

.mission-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.mission-list i {
    color: var(--accent-color);
    margin-top: 5px;
}

/* Certifications */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cert-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cert-icon {
    width: 80px;
    height: 80px;
    /* Removed background color for images as they might have their own backgrounds or be transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 5px;
    /* Add some padding so image doesn't touch edges */
}

.cert-title {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.cert-content h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.cert-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Products Section */
.products {
    background-color: var(--light-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    opacity: 0;
    /* Initial state for animation */
    transform: translateY(20px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 350px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-specs {
    background: rgba(46, 125, 50, 0.05);
    padding: 12px;
    border-radius: 8px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(46, 125, 50, 0.2);
}

.specs-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
    margin-bottom: 4px;
    font-weight: 600;
}

.specs-value {
    font-size: 0.9rem;
    font-weight: 500;
}

.product-btn {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.product-btn:hover {
    background-color: var(--accent-color);
}

.center-btn {
    text-align: center;
}

/* Contact Section */
.contact {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.contact-card {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background-color: #f1f8e9;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-color);
}

.contact .section-title {
    color: var(--primary-color);
}

.btn-sm {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.9rem;
    margin-top: 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-heading {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-size: 0.88rem;
}

.footer-links-list a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info i {
    color: var(--white);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 15px;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.5, 0, 0, 1), transform 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1s cubic-bezier(0.5, 0, 0, 1), transform 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 1s cubic-bezier(0.5, 0, 0, 1), transform 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays for children */
.stagger-container>* {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-container.active>* {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.stagger-container.active>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-container.active>*:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-container.active>*:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-container.active>*:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-container.active>*:nth-child(5) {
    transition-delay: 0.5s;
}

/* Packaging & Branding Section */
.packaging-section {
    padding: 100px 0;
    background-color: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.packaging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.packaging-card {
    background: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.packaging-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.packaging-img-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: #fdfdfd;
}

.packaging-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.packaging-card:hover .packaging-img-wrapper img {
    transform: scale(1.05);
}

.packaging-info {
    padding: 20px;
    text-align: center;
}

.packaging-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.packaging-label {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.8rem;
    border-radius: 50px;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .packaging-grid {
        grid-template-columns: 1fr;
    }

    .packaging-img-wrapper {
        height: 450px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-container,
    .contact-wrapper,
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-info li {
        justify-content: center;
    }

    .social-links {
        display: flex;
        justify-content: center;
    }
}

/* Landscape Branding Request Banner */
.packaging-request-banner {
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 30px 50px;
    color: var(--white);
    margin-top: 40px;
}

.request-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.request-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.request-icon {
    font-size: 2.8rem;
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.request-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white) !important;
}

.request-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: var(--white);
}

.request-right {
    flex-shrink: 0;
}

.request-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.request-btn:hover {
    background-color: #ff6d00;
    transform: scale(1.05);
}

/* Responsive adjustments for banner */
@media (max-width: 992px) {
    .request-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .request-left {
        flex-direction: column;
        gap: 20px;
    }

    .packaging-request-banner {
        padding: 40px 20px;
    }
}

.request-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.request-btn:hover {
    background-color: #ff6d00;
    transform: scale(1.05);
}

/* Partnership CTA Section (Matches Image 1) */
.partnership-cta {
    padding: 60px 0 100px;
}

.partnership-card {
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 60px;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.partnership-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.partnership-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

.partnership-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.partner-btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.partner-btn-primary:hover {
    background-color: #ff6d00;
    transform: translateY(-3px);
}

.partner-btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.partner-btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partnership-card {
        padding: 40px 20px;
    }

    .partnership-content h2 {
        font-size: 2rem;
    }

    .partnership-content p {
        font-size: 1rem;
    }
}