/* Regal Recruits - Modern CSS Styling */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a237e;
    background-color: #ffffff;
}

/* Minimal Home Page Styles */
.home-body {
    background: #ffffff;
    color: #1a237e;
    overflow: hidden;
    height: 100vh;
}

.hero-minimal {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #ffffff;
}

.space-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.space-element {
    position: absolute;
    background: rgba(26, 35, 126, 0.1);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.space-1 {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.space-2 {
    width: 2px;
    height: 2px;
    top: 60%;
    left: 80%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.space-3 {
    width: 6px;
    height: 6px;
    top: 40%;
    left: 20%;
    animation-delay: 10s;
    animation-duration: 35s;
}

.space-4 {
    width: 3px;
    height: 3px;
    top: 80%;
    left: 60%;
    animation-delay: 15s;
    animation-duration: 28s;
}

.space-5 {
    width: 5px;
    height: 5px;
    top: 10%;
    left: 70%;
    animation-delay: 8s;
    animation-duration: 32s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-content-minimal {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.logo-section-minimal {
    margin-bottom: 4rem;
}

.academy-logo-minimal {
    margin-bottom: 2rem;
}

.logo-image-minimal {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
}

.logo-image-minimal:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.brand-name-minimal {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 8px;
    color: #1a237e;
}

.tagline-minimal {
    font-size: 1.3rem;
    color: #1a237e;
    opacity: 0.8;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.invite-section-minimal {
    max-width: 600px;
    margin: 0 auto;
}

.invite-badge-minimal {
    background: rgba(26, 35, 126, 0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid rgba(26, 35, 126, 0.1);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.1);
}

.invite-badge-minimal h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a237e;
    font-weight: 600;
    letter-spacing: 1px;
}

.invite-badge-minimal p {
    font-size: 1.2rem;
    color: #1a237e;
    opacity: 0.7;
    line-height: 1.6;
    font-weight: 300;
}

.access-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.access-link {
    color: #1a237e;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    opacity: 0.8;
}

.access-link:hover {
    opacity: 1;
    background: rgba(26, 35, 126, 0.05);
    transform: translateY(-2px);
}

.divider {
    color: #1a237e;
    opacity: 0.3;
    font-size: 1.2rem;
    font-weight: 300;
}

/* Responsive design for minimal home page */
@media (max-width: 768px) {
    .brand-name-minimal {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .tagline-minimal {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .logo-image-minimal {
        width: 120px;
        height: 120px;
    }
    
    .invite-badge-minimal {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .invite-badge-minimal h2 {
        font-size: 1.8rem;
    }
    
    .invite-badge-minimal p {
        font-size: 1rem;
    }
    
    .access-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .divider {
        display: none;
    }
}

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

/* Clean Navigation for non-home pages */
.navbar {
    background: #ffffff;
    padding: 1rem 0;
    border-bottom: 2px solid #f0f0f0;
    box-shadow: 0 2px 10px rgba(26, 35, 126, 0.05);
}

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

.nav-brand h1 {
    color: #1a237e;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #1a237e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    opacity: 0.7;
}

.nav-menu a:hover,
.nav-menu a.active {
    opacity: 1;
    background-color: rgba(26, 35, 126, 0.05);
    transform: translateY(-2px);
}

/* Clean Page Styles */
.page-header {
    background: #ffffff;
    padding: 80px 0 40px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a237e;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 1.3rem;
    color: #1a237e;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.page-section {
    padding: 60px 0;
    background: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a237e;
    text-align: center;
    margin-bottom: 3rem;
}

.card {
    background: #ffffff;
    border: 2px solid rgba(26, 35, 126, 0.1);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(26, 35, 126, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.1);
    border-color: rgba(26, 35, 126, 0.2);
}

.card h3 {
    color: #1a237e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card p {
    color: #1a237e;
    opacity: 0.7;
    line-height: 1.7;
}

/* Clean Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #1a237e;
    color: white;
    border: 2px solid #1a237e;
}

.btn-primary:hover {
    background: transparent;
    color: #1a237e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #1a237e;
    border: 2px solid rgba(26, 35, 126, 0.3);
}

.btn-secondary:hover {
    background: #1a237e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.2);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Clean Forms */
.form-container {
    background: #ffffff;
    border: 2px solid rgba(26, 35, 126, 0.1);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(26, 35, 126, 0.1);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.5rem;
    color: #1a237e;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a237e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(26, 35, 126, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    color: #1a237e;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a237e;
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #1a237e;
    opacity: 0.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Clean Footer */
.footer {
    background: #1a237e;
    color: white;
    padding: 40px 0 20px 0;
    margin-top: 80px;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: white;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}

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

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

.footer-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
    color: white;
}

/* Success/Error Messages */
.success-message, .error-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.success-message {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #2e7d32;
}

.error-message {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #c62828;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #5c6bc0 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.logo-section {
    margin-bottom: 3rem;
}

.academy-logo {
    margin-bottom: 2rem;
}

.logo-circle {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.brand-name {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.invite-section {
    max-width: 600px;
    margin: 0 auto;
}

.invite-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.invite-badge h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.invite-badge p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #1a237e;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f8f9ff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a237e;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #263238 0%, #37474f 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Product Page Styles */
.hero-product {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
    padding: 80px 0;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text h2 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-text blockquote {
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 2rem;
    opacity: 0.8;
}

.image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mentorship Info */
.mentorship-info {
    padding: 80px 0;
    background-color: #f8f9ff;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid .feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.1);
}

.feature-item .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #1a237e;
    margin-bottom: 1rem;
}

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

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

.story-content h2 {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 1.5rem;
}

.story-content h3 {
    font-size: 1.8rem;
    color: #3949ab;
    margin: 2rem 0 1rem 0;
}

.story-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Why Mentor Section */
.why-mentor {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
}

.why-mentor .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.why-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Why Join Section */
.why-join {
    padding: 80px 0;
    background: #f8f9ff;
}

.why-join h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 3rem;
}

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

.join-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.join-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.15);
}

.card-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.join-card h3 {
    font-size: 1.8rem;
    color: #1a237e;
    margin: 1rem 0;
}

.join-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #263238 0%, #37474f 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Mentorship Page Styles */
.mentorship-hero {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.mentorship-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.program-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.detail-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

/* Form Styles */
.application-form {
    padding: 80px 0;
    background-color: #f8f9ff;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.mentorship-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.5rem;
    color: #1a237e;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3949ab;
    box-shadow: 0 0 0 3px rgba(57, 73, 171, 0.1);
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Success Message */
.success-message {
    padding: 80px 0;
    background-color: #f8f9ff;
}

.success-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-card h2 {
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 1rem;
}

.success-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Error Message */
.error-message {
    background: #fee;
    border: 1px solid #fcc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    color: #c33;
    text-align: center;
}

/* Program Benefits */
.program-benefits {
    padding: 80px 0;
    background: white;
}

.program-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #1a237e;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #263238 0%, #37474f 100%);
    color: white;
    padding: 40px 0 20px 0;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-split,
    .story-split,
    .why-mentor .container,
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .hero-grid .card {
        order: -1;
    }
    
    .hero-grid .card div {
        height: 250px !important;
    }
    
    .hero-grid h2 {
        font-size: 1.8rem !important;
    }
    
    .hero-grid p {
        font-size: 1rem !important;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-grid .card div {
        height: 200px !important;
    }
    
    .hero-grid h2 {
        font-size: 1.5rem !important;
    }
    
    .hero-grid {
        gap: 1.5rem !important;
    }
    
    .container {
        padding: 0 10px;
    }
}