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

.ad-notice {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

.nav-links a:hover {
    color: #00796b;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #ffffff;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #546e7a;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #00796b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #00695c;
}

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

.cta-secondary:hover {
    background-color: #00796b;
    color: #ffffff;
}

.intro-section,
.philosophy-section {
    padding: 100px 0;
}

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

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-image-left,
.split-image-right {
    flex: 1;
    background-color: #e0f2f1;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.split-content-right,
.split-content-left {
    flex: 1;
}

.split-content-right h2,
.split-content-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.split-content-right p,
.split-content-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.benefits-list {
    list-style: none;
    margin: 32px 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #546e7a;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00796b;
    font-weight: bold;
}

.services-preview {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 220px;
    background-color: #e0f2f1;
}

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

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #546e7a;
    margin-bottom: 16px;
}

.service-price {
    padding: 0 24px;
    font-size: 20px;
    font-weight: 600;
    color: #00796b;
    margin-bottom: 20px;
}

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

.btn-select-service:hover {
    background-color: #00695c;
}

.testimonials-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f5f5f5;
    border-radius: 8px;
    border-left: 4px solid #00796b;
}

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

.testimonial-author {
    font-size: 14px;
    color: #546e7a;
    font-weight: 600;
}

.form-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.split-form-right {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px;
    background-color: #00796b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #eceff1;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #546e7a;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background-color: #263238;
    color: #b0bec5;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px 0;
    border-top: 1px solid #37474f;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #78909c;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #2c3e50;
}

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

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

.btn-accept {
    background-color: #00796b;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #eceff1;
    color: #546e7a;
}

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

.thanks-message {
    text-align: center;
    padding: 120px 40px;
}

.thanks-message h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #00796b;
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    max-width: 600px;
    margin: 0 auto 16px;
}

.thanks-message .selected-service {
    display: inline-block;
    padding: 12px 24px;
    margin-top: 20px;
    background-color: #e0f2f1;
    border-radius: 4px;
    font-weight: 600;
    color: #00796b;
}

.page-header {
    padding: 80px 0 40px;
    background-color: #f5f5f5;
}

.page-header h1 {
    font-size: 44px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #546e7a;
}

.team-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.values-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.value-item {
    flex: 1;
    min-width: 240px;
    padding: 32px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #00796b;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.services-full {
    padding: 60px 0;
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #546e7a;
}

.price-tag {
    font-size: 24px;
    font-weight: 600;
    color: #00796b;
    margin-bottom: 20px;
}

.cta-section {
    padding: 100px 0;
    background-color: #00796b;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

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

.contact-page {
    padding: 80px 0;
}

.contact-info {
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-info-item {
    margin-bottom: 24px;
}

.contact-info-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #00796b;
    margin-bottom: 8px;
}

.contact-info-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.legal-page {
    padding: 80px 0;
}

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

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #546e7a;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #546e7a;
}

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .testimonials-container {
        flex-direction: column;
    }

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

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