* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header & Navigation */
header {
    background-color: #000;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.7;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background-color: white;
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #000;
    line-height: 1.3;
}

.hero-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.btn-primary {
    display: inline-block;
    background-color: #000;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.btn-primary:hover {
    background-color: #333;
}

/* Services Section */
.services {
    background-color: #f8f8f8;
    padding: 4rem 2rem;
}

.services h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #e8e7f3;
    padding: 2.5rem;
    border-radius: 8px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000;
}

.service-card p {
    color: #555;
    line-height: 1.7;
}

/* Stats Section */
.stats {
    background-color: white;
    padding: 4rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: #000;
    margin-bottom: 1rem;
}

.stat-item p {
    color: #555;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    background-color: white;
    padding: 4rem 2rem;
}

.why-choose h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #000;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    border-bottom: 1px solid #ddd;
    padding-bottom: 2rem;
}

.why-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #000;
}

.why-item p {
    color: #555;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    background-color: #f8f8f8;
    padding: 4rem 2rem;
}

.testimonials h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.testimonial-card h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #000;
}

.testimonial-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* London Section */
.london-section {
    background-color: #e3e7f5;
    padding: 3rem 2rem;
    text-align: center;
}

.london-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000;
}

.london-section p {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    background-color: white;
    padding: 4rem 2rem;
}

.faq h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #000;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    border-left: 3px solid #000;
    padding-left: 1.5rem;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

/* Rooms Section */
.rooms {
    background-color: #f0f0f8;
    padding: 4rem 2rem;
}

.rooms h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #000;
}

.rooms p {
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.rooms ul {
    margin: 2rem 0;
    padding-left: 2rem;
}

.rooms li {
    margin: 1rem 0;
    color: #555;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background-color: white;
    padding: 4rem 2rem;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.contact-details p {
    margin: 0.5rem 0;
    color: #555;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form button {
    background-color: #000;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #333;
}

.contact-image {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* Footer */
footer {
    background-color: #000;
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links {
    margin: 1.5rem 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Thank You Page */
.thank-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    padding: 4rem 2rem;
}

.thank-box {
    background-color: white;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
}

.thank-box h1 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 1rem;
}

.thank-box h2 {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Policy Pages */
.policy-page {
    background-color: white;
    padding: 2rem;
    min-height: 70vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.policy-container h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
}

.policy-container section {
    margin-bottom: 2.5rem;
}

.policy-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.policy-container p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.policy-container ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-container li {
    margin: 0.5rem 0;
    line-height: 1.7;
    color: #555;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .services-grid,
    .why-grid,
    .faq-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .services h2,
    .why-choose h2,
    .testimonials h2,
    .faq h2,
    .rooms h2,
    .contact-info h2 {
        font-size: 1.5rem;
    }

    .thank-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0 1rem;
    }

    .hero,
    .services,
    .stats,
    .why-choose,
    .testimonials,
    .faq,
    .rooms,
    .contact {
        padding: 2rem 1rem;
    }

    .policy-container {
        padding: 1rem;
    }

    .policy-container h1 {
        font-size: 2rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }
}