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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 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: 9999;
    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 {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

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

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 4px 12px;
    border-radius: 3px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a252f;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a5f7a;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
}

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

.intro-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

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

.reference {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.reference:hover {
    text-decoration: underline;
}

.services-showcase {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a252f;
}

.services-header p {
    font-size: 18px;
    color: #4a5f7a;
}

.service-card-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 60px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 50px 45px;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #4a5f7a;
}

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

.service-benefits li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 25px;
}

.service-visual {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonial-section {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

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

.testimonial-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a252f;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 35px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2c3e50;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
}

.form-section-split {
    display: flex;
    min-height: 600px;
}

.form-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.form-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.form-container {
    flex: 1;
    padding: 60px 50px;
    background-color: #ffffff;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a252f;
}

.form-container > p {
    font-size: 16px;
    margin-bottom: 35px;
    color: #4a5f7a;
}

.selected-service-display {
    background-color: #e8f4f8;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #2c3e50;
    display: none;
}

.selected-service-display.show {
    display: block;
}

.contact-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d7de;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.science-section {
    padding: 60px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

.science-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.science-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.science-content p {
    font-size: 17px;
    line-height: 1.8;
}

.science-content a {
    color: #3498db;
}

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

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

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

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.references p {
    font-size: 13px;
    margin-bottom: 10px;
}

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

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

.disclaimer {
    max-width: 1200px;
    margin: 40px auto;
    padding: 25px;
    background-color: #243444;
    border-left: 4px solid #e74c3c;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 13px;
    color: #95a5a6;
}

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin: 0;
}

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

.about-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4a5f7a;
}

.about-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

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

.values-split {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.value-card-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 50px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.value-card-split.reverse {
    flex-direction: row-reverse;
}

.value-content {
    flex: 1;
    padding: 50px 45px;
}

.value-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
}

.value-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5f7a;
}

.value-visual {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.value-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.team-section {
    padding: 60px 40px;
    background-color: #ecf0f1;
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
}

.team-section p {
    font-size: 17px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: #4a5f7a;
}

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

.philosophy-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.philosophy-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.philosophy-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.philosophy-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4a5f7a;
}

.services-detailed {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.service-detail-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 60px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 50px 45px;
}

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

.service-detail-content h4 {
    font-size: 18px;
    margin: 25px 0 15px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #4a5f7a;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 20px;
}

.price-box {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    font-weight: 600;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
}

.service-detail-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

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

.cta-section {
    padding: 80px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

.cta-button:hover {
    background-color: #ecf0f1;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.contact-info {
    flex: 1;
    padding-right: 60px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5f7a;
}

.contact-map {
    flex: 1;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    padding: 40px;
}

.map-placeholder p {
    font-size: 18px;
    color: #7f8c8d;
}

.directions-section {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.directions-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #1a252f;
}

.directions-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.direction-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 5px;
}

.direction-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.direction-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5f7a;
}

.thanks-section {
    padding: 100px 40px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a252f;
}

.thanks-content p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #4a5f7a;
}

.service-info-box {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0;
    font-weight: 600;
    color: #2c3e50;
}

.btn-back {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.legal-content {
    padding: 60px 40px;
    background-color: #ffffff;
}

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

.legal-text h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #1a252f;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.legal-text h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: #34495e;
}

.legal-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a5f7a;
}

.legal-text ul {
    margin: 15px 0 20px 20px;
}

.legal-text ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #4a5f7a;
}

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

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-section-split,
    .about-intro-split,
    .value-card-split,
    .philosophy-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-left,
    .intro-text,
    .service-info,
    .form-container,
    .about-text,
    .value-content,
    .philosophy-text,
    .service-detail-content,
    .contact-info {
        padding: 40px 30px;
    }

    .hero-right,
    .intro-image,
    .service-visual,
    .form-image,
    .about-image,
    .value-visual,
    .philosophy-image,
    .service-detail-image {
        flex: 0 0 auto;
        min-height: 300px;
    }

    .main-nav {
        flex-basis: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .services-header h2,
    .testimonial-content h2,
    .form-container h2 {
        font-size: 28px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .testimonial-grid {
        flex-direction: column;
    }
}