body {
    background-color: #fef6f2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

main {
    padding: 40px 5%;
}

.content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.image {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
}

.image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.text {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    line-height: 1.7;
    color: #444;
}

.text h2 {
    color: #803c2c;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.text p {
    margin-bottom: 16px;
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .text {
        padding: 20px;
    }

    .text h2 {
        font-size: 24px;
    }

    .text p {
        font-size: 15px;
    }
}
