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

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

/* Navigation */
.navbar {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
}

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

.nav-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #c0392b;
}

/* Phases Section */
.phases {
    padding: 60px 20px;
    background-color: #fff;
}

.phases h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.phase-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.phase-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.phase-card p {
    color: #666;
    line-height: 1.6;
}

/* Ideal Client Section */
.ideal-client {
    background: #ecf0f1;
    padding: 60px 20px;
}

.ideal-client h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.client-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.client-item {
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    border-left: 3px solid #e74c3c;
    font-size: 1.05rem;
    color: #333;
}

/* CTA Section */
.cta-section {
    background: #2c3e50;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* About Section */
.about-section {
    padding: 60px 20px;
    background-color: #fff;
}

.about-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #e74c3c;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.about-text p {
    margin-bottom: 1rem;
}

.philosophy-section {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #e74c3c;
}

.philosophy-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Program Section */
.program-section {
    padding: 60px 20px;
    background-color: #fff;
}

.program-section h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.program-details {
    margin-bottom: 3rem;
}

.phase-detail {
    background: #f9f9f9;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.phase-detail h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.phase-detail ul {
    list-style: none;
    color: #555;
}

.phase-detail li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.phase-detail li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    background: #ecf0f1;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
}

.pricing-section h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.pricing-box {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #e74c3c;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e74c3c;
    margin: 1rem 0;
}

.or {
    color: #999;
    font-size: 1rem;
    margin: 0.5rem 0;
}

.price-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.delivery-options,
.alumni-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.small {
    font-size: 0.9rem;
    color: #999;
}

/* Case Studies Section */
.case-studies-section {
    padding: 60px 20px;
    background-color: #fff;
}

.case-studies-section h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.case-study {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.case-study h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.case-study h3 {
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.case-study-content p {
    color: #555;
    margin-bottom: 1rem;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: #fff;
    padding: 1rem;
    border-radius: 5px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-weight: bold;
    color: #2c3e50;
    font-size: 0.9rem;
}

.metric-value {
    color: #e74c3c;
    font-size: 1.3rem;
    font-weight: bold;
}

.testimonial {
    background: #fff;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #e74c3c;
    border-radius: 5px;
    font-style: italic;
    color: #555;
}

.testimonial p {
    margin-bottom: 0.5rem;
}

.insight {
    background: #e8f4f8;
    padding: 1rem;
    border-radius: 5px;
    margin: 1.5rem 0;
    color: #2c3e50;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background-color: #fff;
}

.contact-section h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-form {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.2);
}

.submit-button {
    background-color: #e74c3c;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #c0392b;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.info-box h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-box p {
    color: #555;
    margin-bottom: 0.5rem;
}

.info-box a {
    color: #e74c3c;
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

/* CTA Box */
.cta-box {
    background: #e8f4f8;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.inline-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
}

.inline-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.footer p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .phases h2 {
        font-size: 1.8rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .metrics {
        grid-template-columns: 1fr;
    }

    .about-content h1 {
        font-size: 1.8rem;
    }

    .program-section h1 {
        font-size: 1.8rem;
    }

    .case-studies-section h1 {
        font-size: 1.8rem;
    }

    .contact-section h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .phases-grid {
        grid-template-columns: 1fr;
    }
}
