section.welcome,
section.features,
section.contact {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin: 2rem auto;
    max-width: 1000px;
    padding: 3rem 2rem;
}

section.welcome {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.welcome-text {
    flex: 1;
    min-width: 280px;
}

.welcome-text h1 {
    font-size: 2.25rem;
    color: #111827;
    margin-bottom: 1rem;
}

.welcome-text p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--logo-color1);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #b00457;
}

.welcome-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 280px;
}

.welcome-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

section.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    text-align: center;
}

.feature {
    flex: 1 1 250px;
}

.feature h2 {
    color: #111827;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #4b5563;
    font-size: 1rem;
}

section.contact {
    text-align: center;
}

section.contact h2 {
    font-size: 1.75rem;
    color: #111827;
    margin-bottom: 1rem;
}

section.contact p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    section.welcome {
        flex-direction: column;
        text-align: center;
    }

    .welcome-image {
        margin-top: 2rem;
    }

    section.features {
        flex-direction: column;
    }
}