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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: #2D8B47;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    color: white;
}

.cookie-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cookie-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cookie-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.cookie-btn.accept {
    background: white;
    color: #2D8B47;
}

.cookie-btn.refuse {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.nav-brand a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2D8B47;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2D8B47;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 6rem 0;
    background: white;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #333;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #666;
}

.cta-button {
    background: #2D8B47;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background: #25743A;
    transform: translateY(-2px);
}

/* Collaboration Section */
.collaboration {
    padding: 6rem 0;
    background: white;
}

.collaboration-image {
    margin-bottom: 4rem;
}

.collaboration-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.collaboration-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.collaboration-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    max-width: 1200px;
}

/* Framework Section */
.framework {
    padding: 6rem 0;
    background: white;
}

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

.framework-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.framework-card {
    background: #2D8B47;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    color: white;
}

.framework-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.framework-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.framework-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: white;
}

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

.benefits-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.benefits-grid-ab{
    grid-template-columns: repeat(3, 1fr);
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 3px solid #2D8B47;
    text-align: left;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    font-style: italic;
}

.benefit-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Programs Section */
.programs {
    padding: 6rem 0;
    background: white;
}

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

.programs-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.program-card {
    background: #2D8B47;
    border-radius: 20px;
    overflow: hidden;
    color: white;
}

.program-image {
    height: 240px;
    overflow: hidden;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.program-image img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
}

.program-content {
    padding: 0 2.5rem 2.5rem;
}

.program-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
}

.program-content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
}

.office-info {
    margin-bottom: 1.5rem;
}

.office-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.map-container {
    margin-bottom: 4rem;
}

.map-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.form-section {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
    line-height: 1.2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input {
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 50px;
    background: #D4E6D9;
    font-size: 1.1rem;
    color: #333;
    font-family: 'Inter', sans-serif;
}

.contact-form input::placeholder {
    color: #666;
}

.contact-form input:focus {
    outline: 3px solid #2D8B47;
}

.submit-btn {
    background: #2D8B47;
    color: white;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
    background: #25743A;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: white;
    padding: 3rem 0 1rem;
    border-top: 3px solid #2D8B47;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: #2D8B47;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: #2D8B47;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #25743A;
    transform: translateY(-2px);
}

.social-links img {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

.footer-bottom {
    text-align: left;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #666;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .framework-header h2,
    .benefits-header h2,
    .programs-header h2,
    .collaboration-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .framework-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        gap: 2rem;
    }
    
    .cookie-content {
        padding: 30px 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .framework-header h2,
    .benefits-header h2,
    .programs-header h2,
    .collaboration-content h2 {
        font-size: 1.8rem;
    }
    
    .form-section h2 {
        font-size: 2rem;
    }
    
    .framework-card,
    .program-content {
        padding: 2rem 1.5rem;
    }
}

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

.hero,
.collaboration,
.framework,
.benefits,
.programs,
.contact {
    animation: fadeInUp 0.8s ease-out;
}

.collaboration_ab{
    display: flex;
}
@media (max-width: 768px) {
    .collaboration_ab{
        flex-direction: column;
    }
}