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

:root {
    --primary-red: #C72539;
    --dark-red: #8B1F2E;
    --light-pink: #F5E6E8;
    --dark-gray: #2C2C2C;
    --medium-gray: #5A5A5A;
    --light-gray: #F8F8F8;
    --white: #FFFFFF;
    --text-color: #2C2C2C;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-cta {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.92) 100%);
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    padding: 120px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    max-width: 700px;
    margin: 0 0 24px 0;
    color: var(--dark-gray);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 0 40px 0;
    color: var(--dark-gray);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.column {
    padding: 20px;
}

.image-column {
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.section-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background-color: var(--white);
}

.problem-section h2 {
    margin-bottom: 30px;
}

.quotes {
    margin: 20px 0;
}

.quotes blockquote {
    border-left: 4px solid var(--primary-red);
    padding-left: 20px;
    margin: 15px 0;
    font-style: italic;
    color: var(--medium-gray);
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--dark-red);
    color: var(--white);
}

.about-section h2 {
    color: var(--white);
}

.about-section p {
    font-size: 1.1rem;
}

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

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.5rem;
    line-height: 1;
}

/* Framework Section */
.framework-section {
    padding: 80px 0;
    background-color: var(--dark-red);
    color: var(--white);
}

.framework-section h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    max-width: 910px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.framework-card {
    background-color: var(--light-pink);
    color: var(--dark-gray);
    padding: 40px;
    border-radius: 12px;
}

.framework-card .icon {
    margin-bottom: 20px;
    background-color: var(--primary-red);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.framework-card .icon i {
    font-size: 2rem;
    color: var(--white);
}

.framework-card h3 {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.framework-footer {
    text-align: center;
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Coaching Section */
.coaching-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.coaching-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.coaching-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.coaching-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.coaching-card h3 {
    margin-bottom: 20px;
}

.coaching-card p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.coaching-card .btn {
    margin-top: auto;
}

/* Vision Section */
.vision-section {
    padding: 80px 0;
    background-color: var(--light-pink);
}

.vision-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.vision-card {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
}

.vision-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--dark-red);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 25px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta-section .btn {
    margin-top: 20px;
    background-color: var(--light-pink);
    color: var(--dark-red);
}

.cta-section .btn:hover {
    background-color: var(--white);
}

/* Guide Section */
.guide-section {
    padding: 80px 0;
    background-color: var(--primary-red);
    color: var(--white);
}

.guide-section h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 15px;
}

.guide-section h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.guide-section ul {
    max-width: 800px;
    margin: 30px auto;
    list-style-position: inside;
}

.guide-section li {
    padding: 10px 0;
    font-size: 1.05rem;
}

.guide-section .btn {
    display: block;
    max-width: 300px;
    margin: 40px auto 0;
    text-align: center;
    background-color: var(--white);
    color: var(--primary-red);
}

.guide-section .btn:hover {
    background-color: var(--light-pink);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card:before {
    display: none;
}

.testimonial-card h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.testimonial-card cite {
    display: block;
    margin-top: 20px;
    font-style: italic;
    color: var(--medium-gray);
}

/* Footer */
.footer {
    background-color: var(--light-gray);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3, .footer-column h4 {
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    padding: 8px 0;
}

.footer-column a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-red);
}

.footer-column .btn-primary {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    color: var(--medium-gray);
}

/* Responsive Design */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .two-column.reverse {
        direction: ltr;
    }
    
    .framework-grid,
    .coaching-grid,
    .vision-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero h1,
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-content {
        padding: 80px 20px 60px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0 !important;
    }
    
    .image-column,
    .section-image {
        min-height: 300px;
    }
}
