/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Section */
.header-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.header-image {
    max-width: 100px;
    height: auto;
    border-radius: 10px;
}

.logo {
    max-width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.logo-link {
    text-decoration: none;
}

.school-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 0;
}

.school-subtitle {
    color: #ecf0f1;
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

/* Section Titles */
.section-title {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

/* Introduction Section */
.intro-section {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.rne-badge {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    margin: 20px 0;
    font-size: 1.1rem;
}

.intro-text {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Edgar Morin Section */
.edgar-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.edgar-photo {
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.edgar-name {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.edgar-role {
    font-size: 1.3rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 5px;
}

.edgar-title {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 500;
}

/* Founders Section */
.founders-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.founders-group-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.founder-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.founder-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.founder-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.founder-title {
    font-size: 1rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 15px;
}

.founder-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.francois-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

/* CA Members Section */
.ca-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ca-member {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
    height: 100%;
}

.ca-member:hover {
    transform: translateY(-3px);
}

.ca-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.ca-name {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 8px;
}

.ca-role {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.parents-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.parent-list {
    list-style: none;
    padding-left: 0;
}

.parent-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 0.95rem;
}

.parent-list li:last-child {
    border-bottom: none;
}

/* Team Section */
.team-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-3px);
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.team-member h6 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

/* Team Structure */
.team-structure {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.team-structure h5 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.team-section-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.team-section-item h6 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.team-section-item ul {
    list-style: none;
    padding-left: 0;
}

.team-section-item li {
    padding: 6px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
    line-height: 1.5;
}

.team-section-item li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .school-title {
        font-size: 2rem;
    }
    
    .school-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .header-image {
        max-width: 80px;
    }
    
    .founder-card,
    .ca-member,
    .team-member {
        margin-bottom: 20px;
    }
    
    .intro-section,
    .edgar-section,
    .founders-section,
    .ca-section,
    .team-section {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .school-title {
        font-size: 1.5rem;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    position: relative;
    min-height: 100vh;
}

/* Background Overlay */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bac19d_29c9e576b8084ca69c447102d8960f15~mv2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    opacity: 0.1;
    z-index: -1;
}

/* Header Section */
.header-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.logo {
    max-width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.logo-link {
    text-decoration: none;
}

.school-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 0;
}

.school-subtitle {
    color: #ecf0f1;
    font-size: 1rem;
    font-style: italic;
    margin: 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Navigation Menu */
.navbar {
    background: transparent;
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
    padding: 4px 8px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: #ecf0f1 !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 16px !important;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white !important;
    transform: translateY(-2px);
}

.nav-link.active {
    background-color: rgba(255,255,255,0.2);
    color: white !important;
    font-weight: 600;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.95);
    min-height: calc(100vh - 200px);
}

/* Section Titles */
.section-title {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

/* Workshops Page Styles */
.hero-section {
    text-align: center;
    margin-bottom: 50px;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Workshop Goals Section */
.workshops-goals {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.workshop-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.workshops-title {
    font-size: 2.2rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 30px;
}

.workshop-objectives {
    list-style: none;
    padding-left: 0;
}

.workshop-objectives li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: #555;
    border-left: 4px solid #3498db;
    padding-left: 20px;
    margin-bottom: 10px;
    background: rgba(248,249,250,0.9);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.workshop-objectives li:hover {
    background: rgba(232,244,253,0.9);
    transform: translateX(5px);
}

.workshop-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.workshop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Gallery Section */
.gallery-section {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.gallery-item {
    background: rgba(248,249,250,0.9);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 20px;
}

.gallery-caption h5 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.gallery-caption p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* CLIMAX Section */
.climax-section {
    background: rgba(248,249,250,0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.edgar-small {
    width: 100px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.climax-title {
    font-size: 2rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 30px;
}

.climax-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.climax-list li {
    padding: 15px 20px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 5px solid #e74c3c;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.climax-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.climax-description p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    font-weight: 500;
}

.climax-activities {
    list-style: none;
    padding-left: 0;
}

.climax-activities li {
    padding: 12px 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid #ddd;
}

.climax-activities li:last-child {
    border-bottom: none;
}

/* Footer Styles */
.footer-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 50px 0 20px;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.footer-title {
    color: #ecf0f1;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-subtitle {
    color: #bdc3c7;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-text {
    color: #bdc3c7;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-rne {
    background: #e74c3c;
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-weight: bold;
    display: inline-block;
    font-size: 0.9rem;
    margin-top: 10px;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #3498db;
}

.footer-social-icon {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
}

.footer-social-icon:hover {
    transform: scale(1.1);
}

.footer-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #7f8c8d, transparent);
    margin: 30px 0 20px;
}

.footer-copyright {
    color: #95a5a6;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .school-title {
        font-size: 1.5rem;
    }
    
    .school-subtitle {
        font-size: 0.9rem;
    }
    
    .workshops-title {
        font-size: 1.8rem;
    }
    
    .workshop-objectives li {
        font-size: 1rem;
        padding: 10px 0 10px 15px;
    }
    
    .gallery-img {
        height: 150px;
    }
    
    .gallery-caption {
        padding: 15px;
    }
    
    .climax-title {
        font-size: 1.5rem;
    }
    
    .edgar-small {
        width: 80px;
    }
    
    .footer-section {
        padding: 30px 0 15px;
    }

    .navbar-collapse {
        background: rgba(44, 62, 80, 0.95);
        border-radius: 10px;
        margin-top: 10px;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .hero-image {
        margin: 0 15px;
    }
    
    .workshop-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .gallery-img {
        height: 120px;
    }
    
    .workshops-goals,
    .gallery-section,
    .climax-section {
        padding: 20px 15px;
    }

    .school-title {
        font-size: 1.3rem;
    }

    .logo {
        max-width: 60px;
    }
}



/* Contact Page Styles */
.contact-hero {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.contact-main-title {
    font-size: 3rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #7f8c8d;
    font-style: italic;
}

.contact-email-btn {
    display: block;
    transition: transform 0.3s ease;
}

.contact-email-btn:hover {
    transform: scale(1.05);
}

.contact-image {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Inscriptions Section */
.inscriptions-section {
    text-align: center;
}

.inscriptions-card {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.inscriptions-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.inscriptions-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.inscriptions-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.inscriptions-btn {
    background: white;
    color: #e74c3c;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.inscriptions-btn:hover {
    background: #ecf0f1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Contact Info Section */
.contact-card {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    height: 100%;
}

.contact-logo {
    max-width: 100px;
    margin-bottom: 15px;
}

.contact-card-title {
    font-size: 2rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-tagline {
    color: #7f8c8d;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.contact-item h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Contact Form */
.contact-form-card {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    height: 100%;
}

.form-title {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.form-label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.submit-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Quick Inscriptions */
.quick-inscriptions-card {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.quick-inscriptions-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.quick-inscriptions-card h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.quick-btn {
    background: white;
    color: #27ae60;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.quick-btn:hover {
    background: #ecf0f1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Credits Section */
.credits-card {
    background: rgba(248,249,250,0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.credits-card h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.credits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credits-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    color: #555;
    line-height: 1.5;
}

.credits-list li:last-child {
    border-bottom: none;
}

/* Success Alert Styling */
.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #27ae60;
    border-radius: 10px;
    color: #155724;
    font-weight: 600;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-main-title {
        font-size: 2.2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .inscriptions-title {
        font-size: 2rem;
    }
    
    .inscriptions-content h3 {
        font-size: 1.5rem;
    }
    
    .contact-card,
    .contact-form-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .contact-hero {
        padding: 25px;
    }
    
    .inscriptions-card,
    .quick-inscriptions-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .contact-main-title {
        font-size: 1.8rem;
    }
    
    .inscriptions-title {
        font-size: 1.6rem;
    }
    
    .contact-card,
    .contact-form-card,
    .contact-hero,
    .inscriptions-card,
    .quick-inscriptions-card,
    .credits-card {
        padding: 20px 15px;
    }
}






/* Homepage Styles */

/* Hero Section */
.hero-banner {
    background: rgba(255,255,255,0.95);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    text-align: center;
}

.hero-content {
    margin-bottom: 40px;
}

.edgar-quote {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(52, 73, 94, 0.3);
    position: relative;
    overflow: hidden;
}

.edgar-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: rgba(255,255,255,0.1);
    font-family: serif;
}

.edgar-quote p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.edgar-quote footer {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ecf0f1;
    margin-top: 20px;
}

.hero-tagline h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-tagline .lead {
    font-size: 1.3rem;
    color: #7f8c8d;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Mission Section */
.mission-section {
    background: rgba(255,255,255,0.95);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.mission-text .lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.mission-values {
    display: grid;
    gap: 20px;
}

.value-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #3498db;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateX(8px);
    border-left-color: #e74c3c;
    background: linear-gradient(135deg, #e8f4fd 0%, #d6eaf8 100%);
}

.value-item h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-item p {
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.mission-visual {
    text-align: center;
}

.edgar-portrait {
    width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}

.darwin-info {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.darwin-info h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* Programs Section */
.programs-section {
    background: rgba(248,249,250,0.95);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.program-card {
    background: rgba(255,255,255,0.9);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #3498db;
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.program-card h3 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.program-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-weight: 500;
}

.program-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.program-card li {
    background: #f8f9fa;
    padding: 8px 15px;
    margin-bottom: 5px;
    border-radius: 6px;
    border-left: 3px solid #3498db;
    font-size: 0.9rem;
    color: #555;
}

/* Success Section */
.success-section {
    background: rgba(255,255,255,0.95);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.success-card {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.success-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.success-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.success-card p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* News Section */
.news-section {
    background: rgba(248,249,250,0.95);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.news-item {
    background: rgba(255,255,255,0.9);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #e74c3c;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.news-date {
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.news-item h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-item p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}

.quick-info-card {
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 15px;
    height: fit-content;
    sticky: top: 20px;
    border: 1px solid #e9ecef;
}

.quick-info-card h3 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.info-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f1f1;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-item p {
    color: #555;
    margin: 0;
    line-height: 1.4;
    font-size: 0.9rem;
}

.info-item a {
    color: #3498db;
    text-decoration: none;
}

.info-item a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-card {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(231, 76, 60, 0.4);
}

.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-card p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-final {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-buttons-final .btn {
    padding: 15px 25px;
    font-weight: 600;
    border-radius: 25px;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.cta-buttons-final .btn-primary {
    background: white;
    color: #e74c3c;
}

.cta-buttons-final .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

.cta-buttons-final .btn-outline-primary {
    background: transparent;
    color: white;
}

.cta-buttons-final .btn-outline-primary:hover {
    background: white;
    color: #e74c3c;
    transform: translateY(-3px);
}

.deadline-notice {
    background: rgba(0,0,0,0.2);
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-block;
}

.deadline-notice p {
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive Design for Homepage */
@media (max-width: 768px) {
    .hero-tagline h2 {
        font-size: 2rem;
    }
    
    .edgar-quote p {
        font-size: 1.2rem;
    }
    
    .cta-buttons,
    .cta-buttons-final {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .mission-section,
    .programs-section,
    .success-section,
    .news-section {
        padding: 30px 20px;
    }
    
    .hero-banner {
        padding: 40px 20px;
    }
    
    .program-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .cta-card {
        padding: 40px 20px;
    }
    
    .cta-card h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-tagline h2 {
        font-size: 1.6rem;
    }
    
    .edgar-quote {
        padding: 25px 20px;
    }
    
    .edgar-quote p {
        font-size: 1.1rem;
    }
    
    .value-item {
        padding: 20px 15px;
    }
    
    .program-icon {
        font-size: 2.5rem;
    }
    
    .success-card {
        margin-bottom: 15px;
    }
}
