body {
    font-family: Georgia, serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 20px;
}

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

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    max-height: 80px;
    width: auto;
}

.logo-text {
    max-height: 80px;
    width: auto;
    color: darkred;
}


.cta-button {
    padding: 12px 24px;
}

section {
    margin-bottom: 50px;
}

h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

h1 {
    font-size: 30px;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    margin-bottom: 15px;
}

ul {
    margin-bottom: 20px;
}

li {
    font-size: 16px;
    margin-bottom: 8px;
}

.steps li::before {
    content: counter(step) ". ";
    color: darkred;
    font-weight: bold;
}

.steps {
    counter-reset: step;
}

.steps li {
    counter-increment: step;
}

/* Footer */
footer {
    background: #f5f5f5;
    text-align: center;
    margin-top: 60px;
}

footer a {
    color: darkred;
    margin: 0 10px;
}

.copyright {
    margin-top: 15px;
    color: #666;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    body {
        padding: 10px;
    }
}