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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 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: rgba(255, 255, 255, 0.1);
}

.header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.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: #27ae60;
}

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

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.info-split {
    display: flex;
    min-height: 500px;
}

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

.info-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.info-left p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #34495e;
}

.info-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #bdc3c7;
}

.info-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.service-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.service-card h3 {
    font-size: 24px;
    margin: 20px 20px 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 20px 16px;
}

.price-unit {
    font-size: 14px;
    font-weight: 400;
    color: #7f8c8d;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.form-left {
    flex: 1;
    padding: 60px;
    background-color: #34495e;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.form-left p {
    font-size: 18px;
    line-height: 1.7;
}

.form-right {
    flex: 1;
    padding: 60px;
    background-color: #ecf0f1;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
}

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

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

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

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

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

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

.trust-split {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
}

.trust-left {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #bdc3c7;
}

.trust-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

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

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

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

.about-split {
    display: flex;
    min-height: 500px;
}

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

.about-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.about-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.values-split {
    display: flex;
    min-height: 500px;
}

.values-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #bdc3c7;
}

.values-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.values-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

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

.philosophy-split {
    display: flex;
    min-height: 500px;
}

.philosophy-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #34495e;
    color: #ffffff;
}

.philosophy-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.philosophy-left p {
    font-size: 17px;
    margin-bottom: 16px;
    line-height: 1.7;
    opacity: 0.95;
}

.philosophy-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #bdc3c7;
}

.philosophy-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-detail-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-detail-split {
    display: flex;
    min-height: 450px;
    margin-bottom: 60px;
}

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

.service-detail-left {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.service-detail-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.service-detail-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0 20px;
}

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

.services-cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #34495e;
}

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

.contact-info-left {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
}

.contact-info-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

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

.email-text {
    color: #2c3e50;
    font-weight: 500;
}

.contact-map-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #bdc3c7;
}

.contact-map-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-info-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.info-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.info-card p {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.thanks-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #27ae60;
}

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

.thanks-info {
    background-color: #e8f8f5;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.thanks-info p {
    margin: 0;
    color: #2c3e50;
    font-weight: 500;
}

.thanks-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #bdc3c7;
}

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

.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

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

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

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

.legal-container ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: #7f8c8d;
}

@media (max-width: 968px) {
    .hero-split,
    .info-split,
    .form-split,
    .trust-split,
    .about-split,
    .values-split,
    .philosophy-split,
    .service-detail-split,
    .contact-split-section,
    .thanks-container {
        flex-direction: column;
    }

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

    .hero-left,
    .info-left,
    .form-left,
    .trust-right,
    .about-left,
    .values-left,
    .philosophy-left,
    .service-detail-right,
    .contact-info-left {
        padding: 40px 30px;
    }

    .form-right {
        padding: 40px 30px;
    }

    .hero-left h1,
    .page-hero h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .services-section h2,
    .team-section h2,
    .services-cta-section h2,
    .contact-info-section h2 {
        font-size: 32px;
    }

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

    .service-card {
        flex: 0 1 100%;
    }
}

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

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

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

    .hero-left h1 {
        font-size: 28px;
    }

    .services-grid,
    .info-grid {
        gap: 20px;
    }
}