@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #e0e0e0;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #4a148c;
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

nav ul {
    list-style-type: none;
    margin: 10px 0 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #7c43bd;
}

.section {
    padding: 80px 0;
    text-align: center;
}

#home {
    background-color: #f3e5f5;
}

#services {
    background-color: #e1bee7;
}

#about {
    background-color: #ce93d8;
}

.btn {
    display: inline-block;
    background-color: #ff4081;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
}

.btn:hover {
    background-color: #f50057;
    transform: scale(1.05);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
    margin-top: 40px;
}

.service {
    background-color: rgba(255, 255, 255, 0.1);
    color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
}

/* ... (previous CSS remains the same) ... */

#contact {
    background-color: #4a148c;
    color: #fff;
    padding: 60px 0;
}

.contact-info {
    margin-top: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info strong {
    font-weight: bold;
    margin-right: 10px;
    color: #ff80ab;
    min-width: 100px;
    display: inline-block;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff80ab;
}

.location {
    margin-top: 40px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.location h3 {
    margin-bottom: 15px;
    color: #ff80ab;
}

.location p {
    margin-bottom: 20px;
}

.map-container {
    margin-top: 20px;
}

iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
}

/* ... (rest of the CSS remains the same) ... */

footer {
    background-color: #4a148c;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    margin-top: auto;
}

footer p {
    margin: 0;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    header h1 {
        font-size: 2em;
    }
    .section {
        padding: 60px 0;
    }
    .btn {
        padding: 10px 20px;
    }
}

#gallery {
    background-color: #f3e5f5;
    padding: 60px 0;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
    margin-top: 40px;
}

.photo-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.photo-grid img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .photo-grid img {
        height: 200px;
    }
}