/* ===== HEADER SECTION ===== */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #6a11cb 100%);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center; 
    justify-content: space-between;
    position: relative;
    color: white;
    width: 100%;
    margin-bottom: 0rem;
    min-height: 120px;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hero-logo {
    width: 60px;
    height: 50px;
    object-fit: contain;
}

.text-group {
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    z-index: 1;
}

.text-group h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.text-group p {
    font-size: 1.2rem;
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
}

/* Invisible spacer to balance the logo on the right */
.logo-spacer {
    width: 60px;
    height: 50px;
    visibility: hidden;
    flex-shrink: 0;
}


/* ===== MISSION SECTION ===== */
.mission-section {
    max-width: 1000px;
    margin: 0 auto 0rem;
    padding: 0 0.5rem;
}

.mission-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 1rem;
}

.mission-card h2 {
    color: #333;
    font-size: 2.0rem;
    margin-top: 0.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mission-card p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* Mission Icon Container */
.mission-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f0f9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.mission-icon {
    font-size: 1.8rem;
}

.highlight-text {
    color: #b19cd9;
    font-weight: 600;
}

/* ===== FEATURES SECTION ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 2rem;
    margin: 1rem 0;
}

.feature-item {
    background: #f8f9ff;
    border-radius: 10px;
    padding: 1.0rem;
    border-left: 4px solid #6a11cb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
    
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-item h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.5;
}

/* Feature Icon Container */
.feature-icon-container {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #f0f9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon {
    font-size: 1.6rem;
    color: #6a11cb;
}

/* ===== COMMITMENT SECTION ===== */
/* Commitment Icon Container */
.commitment-icon-container {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* ===== DISCLAIMER SECTION (MANDATORY) ===== */
.disclaimer-section {
    padding: 2rem 1rem;
    background-color: #f8f9fa;
}

.disclaimer-card {
    background: #fef2f2;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #fecaca;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.warning-icon-container {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.warning-icon {
    color: white;
    font-size: 1.2rem;
}

.disclaimer-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #dc2626;
    margin: 0;
}

.disclaimer-content {
    margin-left: 0.5rem;
}

.disclaimer-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.disclaimer-bullet {
    color: #ef4444;
    margin-right: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
}

.disclaimer-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4b5563;
}

.disclaimer-bold {
    font-weight: 600;
    color: #1f2937;
}

.disclaimer-highlight {
    color: #dc2626;
    font-weight: 700;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
    padding: 1rem 1rem;
    margin-top: 2rem;
}

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

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTON STYLES ===== */
.primary-btn {
    background-color: #457645 !important;
}

.secondary-btn {
    background-color: #4b5563 !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Header & Mission */
    .text-group {
        white-space: normal;
        padding: 0 1rem;
    }
    
    .mission-card {
        padding: 1.5rem;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Disclaimer */
    .disclaimer-card {
        padding: 1.2rem;
    }
    
    .disclaimer-title {
        font-size: 1.2rem;
    }
    
    .disclaimer-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Disclaimer */
    .disclaimer-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .warning-icon-container {
        margin-right: 0;
    }
    
    /* Mission Card */
    .mission-card h2 {
        font-size: 1.8rem;
    }
    
    .mission-card p {
        font-size: 1rem;
    }
}
