body {
    margin: 0;
    padding: 0;
    background-color: #eef1f7;
    background: radial-gradient(circle, rgba(238, 247, 242, 0.66), rgba(244, 247, 238, 0.93)),
    url('../img/header.jpeg') no-repeat center center fixed;
    background-size: cover;
    color: #1b4332;
    font-family: Tahoma, sans-serif;
    text-transform: uppercase;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap {
    text-align: center;
}

.title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d6a4f;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.image {
    margin-bottom: 20px;
    width: 280px;
}

.description {
    font-size: 26px;
    font-weight: 600;
    color: #1b4332;
    margin-bottom: 20px;
}

.button {
    text-decoration: none;
    padding: 12px 24px;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(to bottom, #40916c, #2d6a4f);
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.button:hover {
    background: linear-gradient(to bottom, #2d6a4f, #1b4332);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

@media (max-width: 767px) {
    h3 {
        font-size: 14px;
    }
    .title {
        font-size: 20px;
    }

    .description, .button {
        font-size: 16px;
    }

    .image {
        margin-bottom: 20px;
        width: 180px;
    }
}