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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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: 20px;
}

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.main-header {
    background-color: #34495e;
    color: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.ad-notice {
    font-size: 12px;
    color: #ecf0f1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #3498db;
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 60px 30px;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 600px;
    position: relative;
    z-index: 10;
    margin-left: 60px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
}

.hero-content-offset h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-content-offset p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #34495e;
}

.hero-image-float {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.hero-image-float img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.intro-split {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text-irregular {
    flex: 1;
    transform: translateY(-30px);
}

.intro-text-irregular h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-text-irregular p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-visual-card {
    flex: 1;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(30px);
}

.intro-visual-card img {
    width: 100%;
    height: 100%;
}

.services-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
}

.section-header-offset {
    margin-left: 120px;
    margin-bottom: 60px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.section-header-offset p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: 380px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.card-offset-1 {
    transform: translateX(-40px);
}

.card-offset-2 {
    transform: translateX(20px) translateY(30px);
}

.card-offset-3 {
    transform: translateX(-20px) translateY(-20px);
}

.card-offset-4 {
    transform: translateX(40px) translateY(10px);
}

.card-offset-5 {
    transform: translateX(-30px) translateY(40px);
}

.service-image {
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.form-section-overlap {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 30px;
    margin-top: -50px;
    position: relative;
}

.form-container-irregular {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 16px;
    transform: rotate(-1deg);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.form-header p {
    font-size: 16px;
    color: #7f8c8d;
}

.selected-service-display {
    background-color: #d5f4e6;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #27ae60;
}

.selected-service-display p {
    margin-bottom: 8px;
}

.appointment-form {
    transform: rotate(1deg);
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
}

.trust-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
}

.trust-content-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-text {
    flex: 1.5;
}

.trust-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.trust-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: #ecf0f1;
    border-radius: 12px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    color: #34495e;
}

.cta-floating {
    background-color: #34495e;
    padding: 80px 30px;
    text-align: center;
}

.cta-content-irregular {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.cta-content-irregular h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-content-irregular p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-column p {
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero-compact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 30px;
    text-align: center;
    color: #ffffff;
}

.page-hero-compact h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.page-hero-compact p {
    font-size: 20px;
    opacity: 0.9;
}

.about-content-irregular {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.about-text-main h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-text-main p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #34495e;
}

.about-image-offset {
    flex: 1;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(-40px);
}

.about-image-offset img {
    width: 100%;
    height: 100%;
}

.philosophy-section {
    background-color: #ecf0f1;
    padding: 80px 30px;
}

.philosophy-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
}

.philosophy-item h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.story-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 30px;
}

.story-content-asymmetric {
    transform: translateX(60px);
}

.story-content-asymmetric h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.story-content-asymmetric p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #34495e;
}

.values-visual {
    background-color: #34495e;
    padding: 80px 30px;
}

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

.values-text {
    flex: 1;
    color: #ffffff;
}

.values-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.values-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #ecf0f1;
}

.values-image {
    flex: 1;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.values-image img {
    width: 100%;
    height: 100%;
}

.cta-about {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.services-detailed {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    padding: 50px;
    border-radius: 12px;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 16px;
    line-height: 1.7;
    color: #34495e;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #e74c3c;
    margin: 24px 0;
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #34495e;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
}

.service-cta-section {
    background-color: #ecf0f1;
    padding: 80px 30px;
    text-align: center;
}

.service-cta-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #34495e;
}

.contact-layout {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-asymmetric {
    flex: 1;
    transform: translateY(-30px);
}

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

.contact-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-address,
.contact-email {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
    font-size: 17px;
}

.contact-note {
    background-color: #d5f4e6;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-note a {
    color: #27ae60;
    font-weight: 600;
    text-decoration: underline;
}

.contact-visual {
    flex: 1;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(30px);
}

.contact-visual img {
    width: 100%;
    height: 100%;
}

.directions-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 50px;
    background-color: #ecf0f1;
    border-radius: 12px;
}

.directions-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.directions-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 30px;
    text-align: center;
}

.thanks-content {
    background-color: #ecf0f1;
    padding: 60px;
    border-radius: 16px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #34495e;
}

.service-confirmation {
    background-color: #d5f4e6;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #27ae60;
}

.thanks-info {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2980b9;
}

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 30px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.7;
    color: #34495e;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page li {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.7;
    color: #34495e;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-image-float {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .intro-split,
    .about-content-irregular,
    .trust-content-split,
    .values-split,
    .contact-layout {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .services-grid-irregular .service-card {
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content-offset h1 {
        font-size: 36px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .services-grid-irregular {
        flex-direction: column;
        align-items: center;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .form-container-irregular {
        padding: 30px;
        transform: none;
    }

    .appointment-form {
        transform: none;
    }
}