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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #d4af37;
    color: #1a1a1a;
}

.btn-accept:hover {
    background-color: #b8941f;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.nav-main {
    background-color: #1a1a1a;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888888;
    padding: 0.25rem 0.75rem;
    border: 1px solid #444444;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    background-color: #34495e;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
    align-items: stretch;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background-color: #ecf0f1;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555555;
    line-height: 1.8;
}

.featured-services {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header p {
    font-size: 1.2rem;
    color: #666666;
}

.service-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-left,
.service-card-right {
    display: flex;
    align-items: stretch;
    background-color: #ffffff;
    overflow: hidden;
}

.service-card-right {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #e0e0e0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666666;
    line-height: 1.7;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #34495e;
    transform: translateX(5px);
}

.view-all-services {
    text-align: center;
    margin-top: 3rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c3e50;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonial-banner {
    padding: 5rem 2rem;
    background-color: #d4af37;
    text-align: center;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-content cite {
    font-size: 1.1rem;
    color: #2c3e50;
    font-style: normal;
    font-weight: 600;
}

.booking-split {
    display: flex;
    align-items: stretch;
}

.booking-visual {
    flex: 1;
    background-color: #e0e0e0;
}

.booking-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-form-container {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.booking-form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-form-container p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #ecf0f1;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #34495e;
    background-color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.btn-submit {
    padding: 1.25rem 2.5rem;
    background-color: #d4af37;
    color: #1a1a1a;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
}

.location-split {
    display: flex;
    align-items: stretch;
}

.location-info {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #f8f9fa;
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item strong {
    display: block;
    font-size: 1.2rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.detail-item p {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.7;
}

.location-image {
    flex: 1;
    background-color: #e0e0e0;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #2c2c2c;
    border-left: 4px solid #d4af37;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #888888;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-card-left,
    .service-card-right,
    .booking-split,
    .location-split {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
    }
}