@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Prevent Scrolling */
html, body {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Hide scrolling */
    background: #FAF8F6;
    color: #333;
}

/* Full-Screen Centering */
.service {
    height: 100vh; /* Full screen height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

/* Title */
.service h1 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

.service p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
}

/* Service Boxes - Adjusted for Full-Screen Fit */
.service1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    max-width: 900px;
    margin-top: 1rem;
}

/* Individual Service Box */
.service2 {
    background: white;
    width: 200px;
    height: 220px;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Hover Effect */
.service2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* Icons */
.service2 i {
    font-size: 2rem;
    color: #fc7425;
    margin-bottom: 0.5rem;
    transition: 0.3s ease;
}

.service2:hover i {
    color: #2C2C2C;
}

/* Title */
.service2 h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Description */
.service2 p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Back Button */
.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: #2C2C2C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.back-button:hover {
    background: #FF914D;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .service {
        padding: 1rem;
    }

    .service h1 {
        font-size: 2rem;
    }

    .service1 {
        flex-direction: column;
        gap: 1rem;
    }

    .service2 {
        width: 90%;
        max-width: 280px;
        height: 180px;
    }
}
