/* 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;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e3a8a;
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    display: block;
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

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

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

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-link {
    color: white;
    text-decoration: underline;
    font-size: 14px;
}

/* Header */
.header {
    background: #1e40af;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.brand-text {
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./images/hero-pattern.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #1e40af;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f0f9ff;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 60px;
    color: #1e293b;
}

.team-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 1;
    /* min-width: 280px; */
    max-width: 350px;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
}

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

.member-name {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #1e40af;
}

.member-description {
    font-weight: 600;
    color: #64748b;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.member-bio {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Webinar Section */
.webinar-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 80px 0;
    color: white;
}

.webinar-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.webinar-text {
    flex: 1;
    /* min-width: 300px; */
}

.webinar-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 30px;
}

.webinar-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.webinar-image {
    flex: 1;
    /* min-width: 300px; */
}

.webinar-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Network Section */
.network-section {
    padding: 80px 0;
    background: white;
}

.network-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.network-image {
    flex: 1;
    /* min-width: 300px; */
}

.network-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.network-text {
    flex: 1;
    /* min-width: 300px; */
}

.network-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 30px;
    color: #1e293b;
}

.network-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #475569;
}

/* Courses Section */
.courses-section {
    padding: 80px 0;
    background: #f8fafc;
}

.courses-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.course-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-title {
    font-size: 1.25rem;
    color: #1e40af;
    margin-bottom: 15px;
    text-align: center;
}

.course-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.course-description {
    color: #475569;
    margin-bottom: 25px;
    line-height: 1.6;
}

.course-features {
    list-style: none;
    padding: 0;
}

.course-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #374151;
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-title {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: #1e293b;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.submit-button {
    width: 100%;
    background: #1e40af;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #1d4ed8;
}

/* Footer */
.footer {
    background: #1e40af;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-info {
    flex: 1;
    /* min-width: 250px; */
}

.footer-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-description {
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-contact p {
    margin: 5px 0;
    opacity: 0.8;
}

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

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

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .team-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .team-member {
        max-width: 100%;
    }
    
    .webinar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .network-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .courses-grid {
        grid-template-columns: auto;
        gap: 30px;
    }
    
    .course-card {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .brand-text {
        font-size: 20px;
    }
    
    .hero {
        padding-top: 70px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .team-section,
    .webinar-section,
    .network-section,
    .courses-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .team-member,
    .course-card {
        padding: 25px 15px;
    }
    
    .webinar-content,
    .network-content {
        gap: 40px;
    }
    
    .courses-grid {
        gap: 25px;
    }
    
    .footer-links {
        gap: 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

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

.team-member,
.course-card {
    animation: fadeInUp 0.6s ease forwards;
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 22px;
        line-height: 1.2;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    h2 {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    p {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .course-card {
        max-width: 300px;
        overflow-wrap: break-word;
        word-break: break-word;
    }
}

