:root {
    --bg-color: #F3EEE7;
    --text-color: #0E0E0E;
    --cta-color: #7D5A50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

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

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/brain.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.hero-logo {
    width: 180px;
    height: auto;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    max-width: 800px;
    text-align: center;
}

.hero h2 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-align: center;
}

.hero .cta-button {
    min-width: 200px;
    max-width: 300px;
}

/* Buttons and CTAs */
.cta-button {
    display: inline-block;
    background-color: var(--cta-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(125, 90, 80, 0.2);
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Sections */
section {
    padding: 6rem 0;
}

section > div:not(.container), 
section > h2,
section > p,
section > form {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}

/* Problem & Solution Sections */
.problem, .solution {
    max-width: 800px;
    margin: 0 auto;
}

.solution-points {
    margin: 2rem 0;
}

.solution-points p {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.problem-content {
    line-height: 1.7;
}

.problem-content p {
    margin-bottom: 1.5rem;
}

.problem-content p:last-child {
    margin-bottom: 0;
}

.problem-block {
    margin: 3rem 0;
}

.problem-block:first-child {
    margin-top: 0;
}

.problem-why {
    margin: 4rem 0;
}

.problem-why strong {
    font-size: 1.4rem;
    color: var(--text-color);
    display: block;
    margin-bottom: 1.5rem;
}

.problem-conclusion {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--cta-color);
    margin-top: 3rem;
}

/* Offers Section */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.offer-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-links a {
    opacity: 0.8;
    transition: opacity 0.2s;
    display: flex;
}

.social-links a:hover {
    opacity: 1;
}

.social-links img {
    display: block;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
}

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

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 16px rgba(125, 90, 80, 0.05);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-icon {
    font-size: 2rem;
    line-height: 1;
}

.testimonial h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-color);
    line-height: 1.3;
    margin: 0;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(14, 14, 14, 0.9);
}

.testimonial strong {
    color: var(--text-color);
    font-weight: 600;
}

.testimonial .author {
    font-style: italic;
    color: var(--cta-color);
    font-weight: 500;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.author-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .testimonials-grid {
        padding: 0 1rem;
    }
    
    .testimonial {
        padding: 2rem;
    }
    
    .testimonial h3 {
        font-size: 1.3rem;
    }
    
    .testimonial p {
        font-size: 1rem;
    }
    
    .problem-block {
        margin: 2rem 0;
    }
    
    .problem-why {
        margin: 3rem 0;
    }
    
    .problem-conclusion {
        font-size: 1.25rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Case Study */
.case-study {
    max-width: 800px;
    margin: 0 auto;
}

.case-study ul {
    list-style: none;
    margin: 1.5rem 0;
}

.case-study li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.case-study li::before {
    content: '•';
    position: absolute;
    left: 0;
}

.case-study h3 {
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 3vw, 1.8rem);
}

.case-study p {
    margin: 1rem 0;
}

/* About Section */
.about {
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.about-text {
    flex: 1;
}

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

.about-text p:last-child {
    margin-bottom: 0;
}

.about-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--cta-color);
    text-align: center;
    position: relative;
    padding: 2rem 3rem;
    margin-top: 3rem;
    font-style: italic;
}

.about-quote::before,
.about-quote::after {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    position: absolute;
    color: var(--cta-color);
    opacity: 0.2;
}

.about-quote::before {
    top: -1rem;
    left: 0;
}

.about-quote::after {
    bottom: -2rem;
    right: 0;
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .about-image {
        width: 200px;
        height: 200px;
    }

    .about-quote {
        font-size: 1.3rem;
        padding: 1.5rem 2rem;
    }
}

/* Steps Section */
.steps {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.step {
    margin-bottom: 2.5rem;
}

.step:last-child {
    margin-bottom: 0;
}

.step h3 {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.step h3 span {
    color: var(--cta-color);
    font-family: 'Playfair Display', serif;
}

.step p {
    padding-left: 2.5rem;
}

@media (max-width: 768px) {
    .step h3 {
        gap: 0.75rem;
    }
    
    .step p {
        padding-left: 2rem;
    }
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
    text-align: center;
}

.contact-form .form-group {
    text-align: left;
}

.contact-form .cta-button {
    min-width: 250px;
    max-width: 350px;
    margin: 0 auto;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.captcha-group {
    background: rgba(0, 0, 0, 0.02);
    padding: 1rem;
    border-radius: 4px;
    margin: 1.5rem 0;
    text-align: left;
}

.captcha-group p {
    margin-bottom: 0.5rem;
}

/* reCAPTCHA Styling */
.g-recaptcha {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

.success-message {
    background: rgba(75, 181, 67, 0.1);
    color: #4BB543;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    font-size: 1.1rem;
    margin: 2rem 0;
}

/* Footer */
footer {
    background: var(--text-color);
    color: white;
    padding: 4rem 0;
    margin-top: 4rem;
}

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

.footer-content .logo img {
    height: 60px;
    width: auto;
}

.social-links a {
    color: white;
    margin-left: 1.5rem;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.social-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

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

    .social-links a {
        margin: 0 0.75rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero, section {
    animation: fadeIn 1s ease-out;
} 