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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #000;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #000;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 100vw;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cta-button.primary {
    background-color: #FBDA5F;
    color: #000;
}

.cta-button.primary:hover {
    background-color: #F5D045;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: #000;
    color: #fff;
}

.cta-button.secondary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #000;
}

.section-content {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
    max-width: 50rem;
    margin: 0 auto;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-up.animate,
.step-card.fade-in-up,
.result-item.fade-in-up,
.case-card.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

@keyframes smoothFadeIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gentleSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(1.05);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
