/* Universal Reset and Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f9fc; /* Light background */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 1. HEADER STYLES */
.page-header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo .brand-name {
    font-size: 1.5em;
    font-weight: 800;
    color: #007bff; /* Primary color */
}

.header-cta-button {
    background-color: #007bff;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.header-cta-button:hover {
    background-color: #0056b3;
}

/* 2. HERO SECTION STYLES */
.hero-section {
    background-color: #e9f0ff; /* Very light blue background */
    padding: 50px 0;
}

.hero-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start; /* Align form to the top */
}

/* Left Side Content */
.hero-text-content {
    flex: 2;
    padding: 20px 0;
}

.hero-text-content .subtitle {
    color: #ff5722; /* Accent color for urgency */
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-text-content h1 {
    font-size: 2.5em;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.hero-text-content .description {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.event-details {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.detail-box {
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.detail-box strong {
    color: #007bff;
    margin-top: 5px;
}

.detail-box .icon {
    font-size: 1.5em;
    margin-bottom: 5px;
}

/* Right Side Form */
.registration-card {
    flex: 1;
    min-width: 350px;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.registration-card h2 {
    color: #007bff;
    margin-bottom: 10px;
}

.registration-card .limited-offer {
    color: #ff5722;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff572250;
    padding-bottom: 10px;
}

.registration-card input[type="text"],
.registration-card input[type="email"],
.registration-card input[type="tel"],
.registration-card select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.submit-button {
    width: 100%;
    background-color: #28a745; /* Green CTA */
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.submit-button:hover {
    background-color: #1e7e34;
}

.privacy-note {
    font-size: 0.8em;
    color: #666;
    margin-top: 15px;
}


/* 3. WHAT YOU'LL LEARN SECTION */
.content-section {
    padding: 60px 0;
    text-align: center;
}

.learn-section {
    background-color: #ffffff;
}

.content-section h2 {
    color: #007bff;
    margin-bottom: 40px;
    font-size: 2em;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.learn-card {
    background: #f0f8ff; /* Lightest blue */
    padding: 20px;
    border-left: 5px solid #007bff;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.learn-card h3 {
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.bonus-info {
    font-weight: bold;
    color: #28a745;
    margin-top: 20px;
    font-size: 1.1em;
}

/* 4. MENTOR SECTION */
.mentor-section {
    background-color: #f7f9fc;
    border-top: 1px solid #eee;
}

.mentor-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.mentor-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: left;
}

.mentor-photo {
    width: 100px;
    height: 100px;
    background: #ccc; /* Placeholder for image */
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid #007bff;
}

.mentor-card h3 {
    margin-bottom: 5px;
    text-align: center;
}

.mentor-card .title {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
    text-align: center;
}

.mentor-card ul {
    list-style-type: disc;
    padding-left: 20px;
}

.mentor-card li {
    margin-bottom: 5px;
}

/* 5. FOOTER */
.site-footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

/* MEDIA QUERIES for responsiveness (mobile layout) */
@media (max-width: 900px) {
    .hero-content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .registration-card {
        order: -1; /* Move form to the top on mobile */
        min-width: 100%;
        margin-bottom: 30px;
    }

    .hero-text-content {
        text-align: center;
    }

    .event-details {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .page-header .container {
        flex-direction: column;
        gap: 10px;
    }

    .header-cta-button {
        width: 100%;
        text-align: center;
    }
}