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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f3f0;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.cookie-popup.show {
    display: flex;
}

.cookie-content {
    background: #f5f3f0;
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
    margin: 20px;
    text-align: left;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cookie-content p {
    margin-bottom: 16px;
    color: #555;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background: #b8956b;
}

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

.cookie-btn.refuse:hover {
    background: #2c3e50;
    color: white;
}

/* Header */
.header {
    background: #f5f3f0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #c9a876;
}

/* Hero Section */
.hero {
    background: #e8ddc4;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #c9a876;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #b8956b;
}

/* Core Areas Section */
.core-areas {
    padding: 100px 0;
    background: #f5f3f0;
}

.core-areas h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

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

.area-card {
    background: #d4c4a8;
    padding: 40px;
    border-radius: 16px;
    text-align: left;
}

.area-card.highlighted {
    background: white;
}

.area-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.area-card p {
    color: #555;
    line-height: 1.6;
}

/* How We Work Section */
.how-we-work {
    padding: 100px 0;
    background: white;
}

.work-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 24px;
}

.work-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    margin-bottom: 40px;
}

.step h3 {
    font-size: 24px;
    font-weight: 600;
    color: #c9a876;
    margin-bottom: 16px;
}

.step p {
    color: #555;
    line-height: 1.6;
}

/* Achievements Section */
.achievements {
    padding: 100px 0;
    background: #f5f3f0;
}

.achievements h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.achievements-grid {
    background: #d4c4a8;
    border-radius: 32px;
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
}

.achievement-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.achievement-card p {
    color: #555;
    line-height: 1.6;
}

/* Learning Section */
.learning {
    padding: 100px 0;
    background: white;
}

.learning h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.learning-grid {
    background: #c9a876;
    border-radius: 32px;
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.learning-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
}

.learning-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.learning-card p {
    color: #555;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: #f5f3f0;
}

.why-content {
    background: white;
    border-radius: 32px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
}

.why-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.why-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: white;
}

.team h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.team-card {
    background: #d4c4a8;
    padding: 40px;
    border-radius: 16px;
}

.team-card:nth-child(2) {
    background: white;
}

.team-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.team-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.team-card p {
    color: #555;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f5f3f0;
}

.contact h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    background: #d4c4a8;
    padding: 60px 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details p {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-form {
    background: white;
    padding: 60px 40px;
    border-radius: 16px;
}

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

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

.form-group input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #c9a876;
}

.submit-btn {
    background: #c9a876;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    float: right;
}

.submit-btn:hover {
    background: #b8956b;
}

/* Footer */
.footer {
    background: #2c3e50;
    padding: 40px 0;
    color: white;
}

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

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* About Page Styles */

/* Principles Hero Section */
.principles-hero {
    background: #e8ddc4;
    padding: 100px 0;
    text-align: center;
}

.principles-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.principles-hero p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* What Drives Us Section */
.drives-us {
    padding: 100px 0;
    background: white;
}

.drives-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 24px;
}

.drives-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.principles-list {
    max-width: 800px;
    margin: 0 auto;
}

.principle {
    margin-bottom: 40px;
}

.principle h3 {
    font-size: 24px;
    font-weight: 600;
    color: #c9a876;
    margin-bottom: 16px;
}

.principle p {
    color: #555;
    line-height: 1.6;
}

/* How We Work Together Section */
.work-together {
    padding: 100px 0;
    background: #f5f3f0;
}

.work-together h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.work-values {
    background: #c9a876;
    border-radius: 32px;
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

/* Extended Team Section */
.extended-team {
    padding: 100px 0;
    background: white;
}

.extended-team h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.team-grid-extended {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.team-card-extended {
    padding: 40px;
    border-radius: 16px;
}

.team-card-extended:nth-child(odd) {
    background: #d4c4a8;
}

.team-card-extended:nth-child(even) {
    background: white;
}

.team-image-extended {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.team-card-extended h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.team-card-extended h4 {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    margin-bottom: 16px;
}

.team-card-extended p {
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .hero h1, .principles-hero h1 {
        font-size: 32px;
    }
    
    .hero p, .principles-hero p {
        font-size: 16px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    
    .learning-grid {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    
    .work-values {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid-extended {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero, .principles-hero {
        padding: 60px 0;
    }
    
    .hero h1, .principles-hero h1 {
        font-size: 28px;
    }
    
    .core-areas,
    .how-we-work,
    .achievements,
    .learning,
    .why-choose,
    .team,
    .contact,
    .drives-us,
    .work-together,
    .extended-team {
        padding: 60px 0;
    }
    
    .area-card,
    .achievement-card,
    .learning-card,
    .team-card,
    .team-card-extended,
    .value-card {
        padding: 30px 20px;
    }
    
    .why-content,
    .contact-info,
    .contact-form,
    .work-values {
        padding: 40px 20px;
    }
    
    .team-image-extended {
        width: 100px;
        height: 100px;
    }
}


/* Internship Page Specific Styles */

/* Internship Hero Section */
.internship-hero {
    background: #e8ddc4;
    padding: 100px 0;
    text-align: center;
}

.internship-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.internship-hero p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Experience Matters Section */
.experience-matters {
    padding: 100px 0;
    background: #f5f3f0;
}

.experience-matters h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.experience-grid {
    background: #c9a876;
    border-radius: 32px;
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.experience-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
}

.experience-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.experience-card p {
    color: #555;
    line-height: 1.6;
}

/* Program Unfolds Section */
.program-unfolds {
    padding: 100px 0;
    background: white;
}

.program-unfolds h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

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

.stage-card {
    background: #d4c4a8;
    padding: 40px;
    border-radius: 16px;
    text-align: left;
}

.stage-card.highlighted {
    background: white;
}

.stage-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.stage-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.stage-card p {
    color: #555;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f5f3f0;
}

.testimonials h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.testimonial-card {
    padding: 40px;
    border-radius: 16px;
}

.testimonial-card:nth-child(odd) {
    background: #d4c4a8;
}

.testimonial-card:nth-child(even) {
    background: white;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.testimonial-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .internship-hero h1 {
        font-size: 32px;
    }
    
    .internship-hero p {
        font-size: 16px;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    
    .stages-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .internship-hero {
        padding: 60px 0;
    }
    
    .internship-hero h1 {
        font-size: 28px;
    }
    
    .experience-matters,
    .program-unfolds,
    .testimonials {
        padding: 60px 0;
    }
    
    .experience-card,
    .stage-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .experience-grid {
        padding: 40px 20px;
    }
}