.body {
    color: var(--text-color-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.main-logo {
    width: 200px;
    margin-bottom: 40px;
}
.main {
    max-width: 960px;
    margin: 40px auto;
    padding: 30px 20px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 6px 12px var(--shadow-medium);
}
.section-title {
    font-size: 20px;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 1px;
}

.about p,
.benefit p {
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 25px;
    color: #555;
    padding: 0 15px;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 6px var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-medium);
    background-color: var(--bg-white);
}

.benefit h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.actions {
    text-align: center;
    margin-top: 50px;
}

.action-button {
    margin: 15px 0;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #288a0a;
    color: var(--text-color-light);
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 3px 6px var(--shadow-light);
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px var(--shadow-medium);
}

.surprise-packages{
    margin-top: 40px;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-title::after {
        width: 45px;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 15px;
    }
}
.main-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.inline-logo {
    width: 200px;
    height: auto;
}
.main-title {
    /* font-family: 'Roboto', sans-serif; */
    font-size: 40px;
    text-align: center;
    color:#288a0a;
    margin-bottom: 9px;
}
@media (max-width: 480px) {

    .header-title {
        font-size: 22px;
    }

    .main-title {
        font-size: 20px;
    }

    .section-title {
        font-size: 18px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .benefit h3 {
        font-size: 18px;
    }
}