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

.ad-disclosure {
    background-color: #34495e;
    color: #fff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: #7f8fa6;
}

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

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

.nav-links a:hover {
    color: #7f8fa6;
}

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

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

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #dfe6e9;
}

.cta-primary {
    background-color: #7f8fa6;
    color: #fff;
    padding: 16px 40px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #636e7b;
}

.cta-secondary {
    background-color: transparent;
    color: #7f8fa6;
    padding: 16px 40px;
    border: 2px solid #7f8fa6;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-secondary:hover {
    background-color: #7f8fa6;
    color: #fff;
}

.intro-section {
    display: flex;
    padding: 80px 0;
    background-color: #fff;
}

.intro-left {
    flex: 1;
    padding: 40px 80px;
}

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

.intro-left p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.intro-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #dfe6e9;
    min-height: 400px;
}

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 20px;
}

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

.service-card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #5a6c7d;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #7f8fa6;
    margin: 20px 0;
}

.philosophy-split {
    display: flex;
    background-color: #fff;
}

.philosophy-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #dfe6e9;
    min-height: 500px;
}

.philosophy-content {
    flex: 1;
    padding: 60px 80px;
}

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

.philosophy-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.form-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

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

.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;
    border: 1px solid #dfe6e9;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

.footer-col a:hover {
    color: #fff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #fff;
    padding: 25px 40px;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-accept {
    background-color: #7f8fa6;
    color: #fff;
}

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

.page-hero {
    background-color: #7f8fa6;
    padding: 100px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 22px;
    color: #ecf0f1;
}

.about-split {
    display: flex;
    background-color: #fff;
    padding: 80px 0;
}

.about-content {
    flex: 1;
    padding: 40px 80px;
}

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

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.about-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #dfe6e9;
    min-height: 450px;
}

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.value-item p {
    font-size: 16px;
    color: #5a6c7d;
}

.team-split {
    display: flex;
    background-color: #fff;
}

.team-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #dfe6e9;
    min-height: 450px;
}

.team-content {
    flex: 1;
    padding: 60px 80px;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.team-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

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

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

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #5a6c7d;
}

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

.service-detail {
    display: flex;
    margin-bottom: 80px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.service-detail-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #dfe6e9;
    min-height: 400px;
}

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #7f8fa6;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.service-detail-content ul {
    margin: 25px 0 30px 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #5a6c7d;
}

.contact-split {
    display: flex;
    padding: 80px 0;
    background-color: #fff;
}

.contact-info {
    flex: 1;
    padding: 40px 80px;
}

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

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

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

.contact-block p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #dfe6e9;
    min-height: 500px;
}

.thanks-section {
    padding: 120px 40px;
    background-color: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #fff;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.thanks-container p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

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

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #fff;
}

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

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

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

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

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #5a6c7d;
}

.legal-content a {
    color: #7f8fa6;
    text-decoration: underline;
}

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

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

    .nav-links {
        gap: 15px;
    }

    .main-nav {
        padding: 15px 20px;
    }

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

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

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

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