body {
    font-family: 'Inter', sans-serif;
    color: #1F2937;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

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

.section {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 2rem 0;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #2563EB;
    color: white;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background-color: #1D4ED8;
    box-shadow: 0 6px 8px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    border: 2px solid #2563EB;
    color: #2563EB;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #2563EB;
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: #1F2937;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4B5563;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}