* {
    box-sizing: border-box;
}
body {
    font-family: Georgia, serif;
    margin: 0;
    background: linear-gradient(to bottom, #021B2E, #033A5B);
    color: #E6F4F9;
    line-height: 1.7;
}
main {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1.5rem;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    background: rgba(2,27,46,.95);
}
.logo {
    font-size: 2rem;
    color: #FFD166;
}
nav {
    display: flex;
    gap: 20px;
}
    nav a {
        color: #E6F4F9;
        text-decoration: none;
    }
        nav a.active {
            border-bottom: 2px solid #FFD166;
        }
.hero {
    text-align: center;
    padding: 3rem 1rem;
}
    .hero img {
        width: 100%;
        max-width: 900px;
        border-radius: 20px;
    }
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
    margin-top: 2rem;
}
.feature-box {
    background: rgba(255,255,255,.06);
    padding: 1.5rem;
    border-radius: 20px;
    transition: 0.3s;
}
    .feature-box:hover {
        transform: translateY(-5px);
    }
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}
    .gallery img {
        width: 100%;
        border-radius: 20px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
        .gallery img:hover {
            transform: scale(1.03);
        }
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}
.pricing-card {
    background: rgba(255,255,255,.05);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
}
.cta-button {
    display: inline-block;
    padding: 12px 28px;
    background: #FFD166;
    color: #021B2E;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
}
form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-row {
    display: flex;
    gap: 20px;
}
input, select, textarea {
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-family: inherit;
    margin-top: 5px;
}
    input:focus,
    textarea:focus,
    select:focus {
        outline: 2px solid #FFD166;
    }

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 3rem 2rem;
}
.map-section iframe {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    border: none;
    margin-top: 20px;
}
@media (max-width: 900px) {

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 2rem 1rem;
    }
    .form-row {
        flex-direction: column;
    }
    .map-section iframe {
        height: 350px;
    }
}
@media (max-width: 768px) {

    header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    nav {
        flex-direction: column;
        gap: 10px;
    }
    main {
        padding: 1.5rem 1rem;
    }
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    p {
        font-size: 0.95rem;
    }
    .hero {
        padding: 2rem 0.5rem;
    }
}
.spaced {
    margin-top: 1.5rem;
}

.philosophy-text {
    max-width: 800px;
    margin: 1rem auto 2rem;
}

.gallery-subtext {
    margin-bottom: 2rem;
    color: #cbd5e1;
}
