/* ===================================
   APACO Website - Main Stylesheet
   =================================== */

/* CSS Variables */
:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c26;
    --primary-brown: #8b4513;
    --secondary-brown: #a0522d;
    --accent-gold: #daa520;
    --light-gold: #f4a460;
    --cream: #f5f5dc;
    --off-white: #fafafa;
    --dark-text: #2c2c2c;
    --light-text: #666;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(74, 124, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 38, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
}

.btn-light {
    background: var(--white);
    color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-contact {
    background: var(--accent-gold);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
}

.btn-contact:hover {
    background: var(--light-gold);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 4px 20px var(--shadow);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h2 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: -5px;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a:not(.btn-contact)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-menu a:not(.btn-contact):hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85), rgba(74, 124, 38, 0.75));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    padding-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--white);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 20% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Impact Stats */
.impact-stats {
    background: var(--primary-green);
    padding: 4rem 0;
    color: var(--white);
    margin-top: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 1rem auto 0;
}

/* About Preview */
.about-preview {
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 1rem;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--shadow-dark);
}

/* Products Showcase */
.products-showcase {
    background: var(--off-white);
}

.products-hero {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.products-hero img {
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--shadow-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px var(--shadow-dark);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.product-icon i {
    font-size: 2rem;
    color: var(--white);
}

.product-card h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.product-weight {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--light-text);
    line-height: 1.6;
}

.products-cta {
    text-align: center;
}

/* Programs Highlight */
.programs-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.program-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    align-items: center;
}

.program-card:nth-child(even) {
    direction: rtl;
}

.program-card:nth-child(even) .program-content {
    direction: ltr;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.program-content {
    padding: 2rem;
}

.program-content h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.program-content p {
    color: var(--light-text);
    line-height: 1.8;
}

.programs-cta {
    text-align: center;
}

/* Gallery Preview */
.gallery-preview {
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 80, 22, 0.9), transparent);
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay p {
    font-weight: 600;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.footer-tagline {
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.footer-section a {
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-section i {
    color: var(--accent-gold);
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Organizational Structure Styles */
.org-structure-section {
    padding: 6rem 0;
    background: var(--cream);
}

.org-chart {
    margin: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.org-level {
    width: 100%;
    display: flex;
    justify-content: center;
}

.org-box-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.org-box {
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 10px;
    padding: 1.5rem;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.org-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.org-box.org-primary {
    background: var(--primary-green);
    color: var(--white);
    min-width: 250px;
}

.org-box.org-primary h4 {
    color: var(--white);
    margin: 0;
    font-size: 1.3rem;
}

.org-box.org-officer {
    background: linear-gradient(135deg, var(--accent-gold), #d4a574);
    min-width: 220px;
}

.org-box.org-officer h5 {
    color: var(--primary-green);
}

.org-box.org-committee {
    background: var(--light-gray);
}

.org-box h5 {
    color: var(--primary-green);
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.org-box h4 {
    color: var(--primary-green);
    margin: 0;
}

.org-member {
    font-size: 0.9rem;
    color: var(--light-text);
    margin: 0.5rem 0;
    font-weight: 500;
}

.org-connector {
    width: 2px;
    height: 1.5rem;
    background: var(--primary-green);
    margin: 0.5rem 0;
}

.org-info {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.org-info p {
    margin: 0.5rem 0;
    color: var(--primary-green);
    font-weight: 500;
}

@media (max-width: 768px) {
    .org-box {
        min-width: 150px;
        padding: 1rem;
    }
    
    .org-box-row {
        gap: 1rem;
    }
    
    .org-box h5 {
        font-size: 0.95rem;
    }
    
    .org-member {
        font-size: 0.85rem;
    }
}

/* ===================================
   Program Gallery Section
   =================================== */

.program-gallery-section {
    padding: 5rem 0;
    background: var(--white);
}

.program-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--shadow);
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 80, 22, 0.95), transparent);
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    margin: 0 0 0.5rem 0;
}

.gallery-overlay p {
    color: var(--cream);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .program-gallery-section {
        padding: 3rem 0;
    }
    
    .program-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .gallery-overlay {
        padding: 1rem;
    }
    
    .gallery-overlay h3 {
        font-size: 1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
}

/* ===================================
   Institutional Partners Section
   =================================== */

.institutional-partners-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.institutional-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.institutional-partner-card {
    background: var(--white);
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 5px solid var(--primary-green);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.institutional-partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-dark);
}

.partner-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.partner-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.partner-card-content .partner-icon {
    margin-bottom: 1.5rem;
}

.institutional-partner-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.institutional-partner-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: auto;
}

.institutional-partner-card.card-no-image {
    background: var(--white);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.institutional-partner-card.card-no-image .partner-card-content {
    padding: 0;
}

.partner-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.partner-icon i {
    font-size: 2rem;
    color: var(--white);
}

.institutional-partners-summary {
    background: var(--white);
    padding: 2.5rem;
    border-left: 5px solid var(--accent-gold);
    border-radius: 8px;
    text-align: center;
}

.institutional-partners-summary p {
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
   Partner Associations Table
   =================================== */

.associations-section {
    padding: 5rem 0;
    background: var(--white);
}

.associations-table-wrapper {
    overflow-x: auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--shadow);
}

.associations-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.associations-table thead {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    font-weight: 700;
}

.associations-table th {
    padding: 1.5rem;
    text-align: left;
    font-size: 0.95rem;
    white-space: nowrap;
}

.associations-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #eee;
    color: var(--dark-text);
}

.associations-table tbody tr {
    transition: background-color 0.2s ease;
}

.associations-table tbody tr:hover {
    background-color: var(--cream);
}

.associations-table tbody tr:nth-child(even) {
    background-color: var(--off-white);
}

.associations-table tbody tr:nth-child(even):hover {
    background-color: #f0f0d8;
}

.associations-table td:first-child {
    font-weight: 600;
    color: var(--primary-green);
    width: 40px;
}

@media (max-width: 768px) {
    .institutional-partners-section {
        padding: 3rem 0;
    }
    
    .institutional-partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partner-card-image {
        height: 150px;
    }
    
    .partner-card-content {
        padding: 1.5rem;
    }
    
    .institutional-partner-card h3 {
        font-size: 1.1rem;
    }
    
    .institutional-partners-summary {
        padding: 1.5rem;
    }
    
    .institutional-partners-summary p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .associations-section {
        padding: 3rem 0;
    }
    
    .associations-table-wrapper {
        overflow-x: auto;
    }
    
    .associations-table {
        font-size: 0.85rem;
    }
    
    .associations-table th,
    .associations-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .associations-table th {
        font-size: 0.8rem;
    }
}

/* Distributor CTA Section */
.distributor-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    position: relative;
    overflow: hidden;
}

.distributor-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.03)" x="0" y="0" width="50" height="50"/></svg>');
    opacity: 0.5;
}

.distributor-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.distributor-cta-text {
    color: var(--white);
}

.distributor-cta-text .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.distributor-cta-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.distributor-cta-text > p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.distributor-benefits-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.benefit-item i {
    color: var(--accent-gold);
    font-size: 1.3rem;
}

.distributor-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.distributor-cta-buttons .btn {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.distributor-cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.distributor-cta-buttons .btn-primary:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.distributor-cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.distributor-cta-buttons .btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.distributor-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.distributor-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.distributor-card .card-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.distributor-card h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.distributor-card > p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.card-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card-features .feature {
    text-align: center;
}

.card-features .feature i {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto 0.75rem;
    background: rgba(74, 124, 38, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-green);
}

.card-features .feature span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
}

@media (max-width: 1024px) {
    .distributor-cta-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .distributor-cta {
        padding: 4rem 0;
    }
    
    .distributor-cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .distributor-cta-text h2 {
        font-size: 2rem;
    }
    
    .distributor-cta-buttons {
        flex-direction: column;
    }
    
    .distributor-cta-buttons .btn {
        width: 100%;
    }
    
    .distributor-card {
        padding: 2rem;
    }
    
    .card-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .associations-table th,
    .associations-table td {
        padding: 1rem;
    }
}
