:root {
    --primary-soft: #d7eaec;
    --primary: #7fa6b3;
    --primary-dark: #5f8f9f;
    --cream: #f6f6e8;
    --text-main: #4a6a75;
}

body {
    font-family: "Segoe UI", system-ui, sans-serif;
    color: var(--text-main);
    line-height: 1.7;
}

section {
    padding: 4rem 0;
}

.box-soft {
    background: var(--primary-soft);
    border-radius: 2rem;
    padding: 3rem;
}

.box-cream {
    background: var(--cream);
    border-radius: 2.5rem;
    padding: 3rem;
}

h1, h2, h3 {
    color: var(--primary-dark);
}

.icon-circle {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
}

footer {
    background: var(--primary-soft);
    padding: 2rem 0;
}
