* {
    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: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(10px);
}

.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: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #27ae60;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #229954;
}

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

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #c0392b;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-text-side {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-text-side h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

.hero-text-side p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
    max-width: 600px;
}

.hero-image-side {
    flex: 1;
    background: #34495e;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #c0392b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #a93226;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

.intro-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.intro-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

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

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

.intro-content {
    flex: 1;
}

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

.intro-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

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

.section-header-centered p {
    font-size: 1.125rem;
    color: #5a6c7d;
}

.service-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 3rem;
}

.service-card-large {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card-image {
    background: #34495e;
    height: 280px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-large:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.service-card-content p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    flex: 1;
}

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

.select-service-btn {
    padding: 0.875rem 2rem;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

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

.cta-secondary:hover {
    background: #2c3e50;
    color: #ffffff;
    transform: translateY(-2px);
}

.why-us-split {
    display: flex;
    min-height: 700px;
}

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

.why-content-side h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.benefit-item {
    margin-bottom: 2.5rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #ecf0f1;
}

.benefit-item p {
    color: #bdc3c7;
    line-height: 1.7;
}

.why-image-side {
    flex: 1;
    background: #34495e;
    overflow: hidden;
}

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

.booking-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.booking-header p {
    font-size: 1.125rem;
    color: #5a6c7d;
}

.booking-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #e9ecef;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #c0392b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #a93226;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #ecf0f1;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.disclaimer-content p {
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

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

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column p {
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
}

.service-detail-page {
    padding: 5rem 2rem;
    background: #ffffff;
}

.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-detail-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-header p {
    font-size: 1.25rem;
    color: #5a6c7d;
}

.service-list-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-item-split:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item-image {
    flex: 1;
    background: #34495e;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
}

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

.service-item-content {
    flex: 1;
}

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

.service-item-content p {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-item-price {
    font-size: 2rem;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 1.5rem;
}

.about-page {
    background: #ffffff;
}

.about-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: #ecf0f1;
}

.about-content-split {
    padding: 5rem 2rem;
}

.about-split-row {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-split-row:nth-child(even) {
    flex-direction: row-reverse;
}

.about-text-col {
    flex: 1;
}

.about-text-col h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text-col p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-image-col {
    flex: 1;
    background: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

.contact-page {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

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

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

.contact-header p {
    font-size: 1.25rem;
    color: #5a6c7d;
}

.contact-info-split {
    display: flex;
    gap: 4rem;
}

.contact-info-box {
    flex: 1;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

.contact-info-box h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.info-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-page {
    padding: 5rem 2rem;
    background: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-container p {
    margin-bottom: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
    color: #5a6c7d;
}

.legal-container li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-service-info {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.thanks-service-info h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.thanks-service-info p {
    color: #5a6c7d;
    margin: 0;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .why-us-split,
    .contact-info-split,
    .about-split-row,
    .service-item-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .about-split-row:nth-child(even),
    .service-item-split:nth-child(even) {
        flex-direction: column;
    }

    .service-grid-split {
        grid-template-columns: 1fr;
    }

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

    .nav-menu {
        width: 100%;
        justify-content: center;
    }
}