/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%; /* Ensure the html and body are full height */
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Arial', sans-serif;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Wrapper for all content */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Full viewport height */
}

/* Navbar */
.navbar {
    padding: 20px 0;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
    width: auto; /* Adjust to fit the logo size */
    height: 64px; /* Example height, adjust as needed */
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(45deg, #6DD5FA, #FF758C);
    color: white;
}

/* Main content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* About Section */
.about {
    padding: 50px 20px;
    text-align: center;
    background-color: #ADD8E6;
}

/* Services Section */
.services {
    padding: 50px 20px;
    text-align: center;
    background-color: #B0E0E6;
}

/* Grid layout for services, centering the cards */
.grid-container {
    display: flex;
    justify-content: center; /* Center the service cards horizontally */
    flex-wrap: wrap; /* Allow cards to wrap */
    gap: 20px; /* Spacing between cards */
}

.service-summary {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 300px; /* Fixed width for the cards */
    margin: 0 10px; /* Margin for spacing, if needed */
}

/* Remove any default margins that could cause white lines */
h1, h2, h3, p {
    margin: 0;
}

/* Footer (Contact Us) */
footer {
    background: #87CEEB;
    color: white;
    text-align: center;
    padding: 20px 0;
}

@media only screen and (max-width: 768px) {
    .service-summary {
        width: auto; /* Full width on smaller screens */
        margin: 10px; /* Adjust margin as needed */
    }
}
