/* ======= RESET ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* ======= BODY ======= */
body {
    background-color: #fefefe;
    color: #333;
    line-height: 1.6;
}

/* ======= BACK LINK ======= */
.back {
    padding: 15px 20px;
}
.back a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s;
}
.back a:hover {
    color: #007BFF;
}

/* ======= HEADER ======= */
.head {
    text-align: center;
    padding: 30px 20px 20px 20px;
}
.head h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #222;
}
.head p {
    font-size: 1rem;
    color: #555;
}

/* ======= ROWS & GALLERY IMAGES ======= */
.row1, .row2, .row3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 15px 0;
}
.row1 img, .row2 img, .row3 img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}
.row1 img:hover, .row2 img:hover, .row3 img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

/* ======= WHY CHOOSE US ======= */
.why {
    background-color: #fafafa;
    padding: 40px 20px;
    text-align: center;
}
.why h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #222;
}
.why ul {
    list-style-type: none;
    padding: 0;
}
.why li {
    margin: 10px 0;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding-left: 25px;
}
.why li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007BFF;
    font-weight: bold;
}

/* ======= CONTACT BUTTONS ======= */
.contact {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 30px 20px;
    flex-wrap: wrap;
}
.contact a {
    text-decoration: none;
    color: #333;
    text-align: center;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.contact a img {
    display: block;
    margin: 0 auto 5px;
}
.contact a:hover {
    background-color: #007BFF;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
    .row1 img, .row2 img, .row3 img {
        width: 45%;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .row1 img, .row2 img, .row3 img {
        width: 100%;
    }
    .contact {
        flex-direction: column;
        gap: 20px;
    }
}