/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Header */
.header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.business-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #2c3e50;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-title {
    margin-bottom: 30px;
}

.hero-title .name {
    font-size: 3em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.hero-title .title {
    font-size: 1.8em;
    color: #34495e;
    margin-bottom: 20px;
}

.hero-title .booking-text,
.hero-title .booking-action {
    font-size: 1.3em;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-info p {
    font-size: 1.1em;
    margin-bottom: 8px;
}

.contact-info .phone {
    font-size: 1.3em;
    font-weight: bold;
    color: #27ae60;
}

.contact-info .email a {
    color: #3498db;
    text-decoration: none;
}

.contact-info .email a:hover {
    text-decoration: underline;
}

.hero-quote {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quote-text {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #34495e;
}

.quote-author {
    font-weight: bold;
    color: #7f8c8d;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about-intro {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: normal;
}

.about-continued {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #34495e;
}

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

.collage-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.collage-image:hover {
    transform: scale(1.05);
}

/* Services and Pricing Section */
.services-pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-pricing h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #2c3e50;
}

.services-list h3 {
    text-align: center;
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #34495e;
}

.services-list em {
    color: #e74c3c;
    font-style: italic;
}

.services-message {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #27ae60;
    font-weight: bold;
}

.promotions {
    text-align: center;
    margin-bottom: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.promotions p {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #e74c3c;
    font-weight: bold;
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-table {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-table h3 {
    text-align: center;
    font-size: 1.4em;
    margin-bottom: 25px;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.pricing-table em {
    color: #e74c3c;
}

.pricing-table small {
    font-size: 0.8em;
    color: #27ae60;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
}

.price-row:last-child {
    border-bottom: none;
}

.duration {
    font-size: 1.1em;
    color: #34495e;
}

.price {
    font-size: 1.2em;
    font-weight: bold;
    color: #27ae60;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #fff;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonial {
    background: #f8f9fa;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 10px;
    border-left: 5px solid #3498db;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #34495e;
}

.testimonial h3 {
    text-align: right;
    font-size: 1.2em;
    color: #2c3e50;
    font-style: italic;
    margin-top: 20px;
}

/* Philosophy Section */
.philosophy {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.philosophy h2 {
    font-size: 2em;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    font-weight: normal;
}

/* Service Details Section */
.service-details {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.service-detail:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.service-detail:nth-child(even) .service-content {
    order: 2;
}

.service-detail:nth-child(even) .service-image {
    order: 1;
}

.service-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-content h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #34495e;
}

.service-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Call to Action Section */
.cta {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.cta-image {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.cta h2 {
    font-size: 2.5em;
    color: #2c3e50;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact p {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #34495e;
}

.contact a {
    color: #3498db;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

.footer p {
    font-size: 1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-title .name {
        font-size: 2.2em;
    }

    .hero-title .title {
        font-size: 1.4em;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
    }

    .about-intro,
    .about-continued {
        font-size: 1em;
    }

    .services-pricing h2,
    .testimonials h2,
    .cta h2 {
        font-size: 2em;
    }

    .philosophy h2 {
        font-size: 1.6em;
    }

    .pricing-tables {
        grid-template-columns: 1fr;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-detail:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-detail:nth-child(even) .service-content,
    .service-detail:nth-child(even) .service-image {
        order: unset;
    }

    .image-collage {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .collage-image {
        height: 150px;
    }

    .testimonial {
        padding: 30px 20px;
    }

    .service-content {
        padding: 30px 20px;
    }

    .hero-quote {
        padding: 20px;
    }

    .promotions {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title .name {
        font-size: 1.8em;
    }

    .hero-title .title {
        font-size: 1.2em;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .services-pricing h2,
    .testimonials h2,
    .cta h2 {
        font-size: 1.6em;
    }

    .philosophy h2 {
        font-size: 1.3em;
    }

    .image-collage {
        grid-template-columns: 1fr 1fr;
    }

    .service-content h3 {
        font-size: 1.6em;
    }

    .logo {
        width: 50px;
        height: 50px;
    }

    .business-name {
        font-size: 1em;
    }
}