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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Hero Section */
.hero {
    background: #5d4a7a;
    color: white;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    margin: 0;
}

.hero-text {
    flex: 1;
    width: 50%;
    padding: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.logo-icon {
    width: 60px;
    height: 60px;
}

.brand {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: stretch;
    margin-left: auto;
}

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

/* Who We Are Section */
.who-we-are {
    padding: 80px 20px;
    background: white;
}

.who-we-are-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.who-we-are-text {
    flex: 1.5;
}

.who-we-are-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.who-we-are-text p:last-child {
    margin-bottom: 0;
}

.who-we-are-image {
    flex: 1;
}

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

/* About Section */
.about {
    padding: 80px 20px;
    background: #f5f5f5;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: #4a3f7a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-text strong {
    color: #4a3f7a;
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #4a5d4a;
    color: white;
}

.btn-primary:hover {
    background: #3a4d3a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.2rem;
    width: 100%;
}

/* CSA Section */
.csa {
    padding: 80px 20px;
    background: #f5f5f5;
}

.csa-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.csa-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
}

.csa-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    color: #4a3f7a;
    margin-bottom: 20px;
    text-align: left;
}

.csa-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.csa-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    padding-left: 10px;
}

.csa-highlight {
    font-size: 1.15rem;
    font-weight: 600;
    color: #4a5d4a;
    margin-bottom: 25px;
    text-align: left;
}

.csa-closing {
    font-size: 1.15rem;
    font-style: italic;
    color: #4a3f7a;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 500;
}

.csa-image {
    margin-top: 40px;
}

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

/* Features Section */
.features {
    padding: 80px 20px;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    color: #4a3f7a;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: #4a5d4a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 80px;
    height: 80px;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.5;
    font-weight: 600;
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: #f5f5f5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #4a5d4a;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #333;
    padding-top: 8px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: left;
    padding: 0;
    display: flex;
    align-items: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: #4a3f7a;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 20px 0 0;
}

.step h3 {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
}

/* What's in a Box Section */
.whats-in-box {
    padding: 80px 20px;
    background: #f5f5f5;
}

.whats-in-box-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.whats-in-box-text {
    flex: 1.5;
}

.whats-in-box-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.whats-in-box-text p strong {
    color: #4a3f7a;
    font-weight: 700;
}

.whats-in-box-text p.highlight {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #4a5d4a;
    font-weight: 500;
    margin-top: 30px;
}

.whats-in-box-image {
    flex: 1;
}

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

/* Community Section */
.community {
    padding: 80px 20px;
    background: #f5f5f5;
}

.community-image {
    max-width: 1200px;
    margin: 40px auto 0;
}

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

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    background: linear-gradient(135deg, #4a3f7a 0%, #5d4a7a 100%);
    color: white;
}

.pricing .section-title {
    color: white;
    margin-bottom: 50px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pricing-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-details {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.pricing-details p {
    margin-bottom: 10px;
}

.pricing-details p:last-child {
    margin-bottom: 0;
}

/* Registration Section */
.registration {
    padding: 80px 20px;
    background: #f5f5f5;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    font-size: 1.8rem;
    color: #4a3f7a;
    margin-bottom: 15px;
}

.form-container > p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #666;
}

.registration-form h4 {
    font-size: 1.3rem;
    color: #333;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.radio-group.full{
	flex-direction: column;
	gap: 15px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
   }
   
   /* Form Message Styles */
   .form-message {
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    display: none;
   }
   
   .form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
   }
   
   .form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
   }
   
   /* Footer */
.footer {
    background: #4a3f7a;
    color: white;
    padding: 40px 20px;
}

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

.footer a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 0.8;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #4a5d4a;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top:hover {
    background: #3a4d3a;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        width: 100%;
        padding: 50px;
    }

    .hero-image{
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-content {
        flex-direction: column;
    }

    .who-we-are-content {
        flex-direction: column;
    }

    .who-we-are-image {
        order: -1;
    }

    .whats-in-box-content {
        flex-direction: column;
    }

    .whats-in-box-image {
        order: -1;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .benefits-grid,
    .steps-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        margin: 0 0 15px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer a {
        margin: 0 10px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-container {
        padding: 30px 20px;
    }

    .radio-group {
        flex-direction: column;
        gap: 15px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
}
