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

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

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.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: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

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

.hero-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #5a6c7d;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.intro-section,
.philosophy-section,
.process-section,
.about-intro,
.values-section,
.approach-section {
    padding: 80px 40px;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.split-content-left h2,
.split-content-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.split-content-left p,
.split-content-right p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #5a6c7d;
}

.inline-cta {
    margin-top: 25px;
}

.inline-cta a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 3px;
    transition: color 0.3s;
}

.inline-cta a:hover {
    color: #2980b9;
}

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

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

.section-header-center h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 18px;
    color: #5a6c7d;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 250px;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.service-content {
    padding: 25px;
}

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

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

.price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #3498db;
    margin-top: 15px;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #ffffff;
}

.form-container > p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
}

.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 #dee2e6;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    padding: 14px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 8px 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;
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #2980b9;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

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

.page-hero h1 {
    font-size: 42px;
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto;
    color: #2c3e50;
}

.team-section,
.location-section {
    padding: 80px 40px;
}

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

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

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

.service-detail {
    padding: 60px 40px;
}

.service-detail:nth-child(even) {
    background-color: #f8f9fa;
}

.pricing-info {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #3498db;
}

.pricing-info strong {
    color: #3498db;
    font-size: 20px;
}

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

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

.cta-content-center h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-content-center p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.cta-button-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s;
}

.cta-button-large:hover {
    background-color: #1a252f;
}

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

.cta-button-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.contact-section {
    padding: 80px 40px;
}

.contact-info {
    margin-top: 40px;
}

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

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

.info-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #ecf0f1;
}

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

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

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

#serviceConfirmation {
    font-weight: 600;
    color: #3498db;
    font-size: 20px;
}

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

.next-steps {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.step-item {
    flex: 1;
}

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

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

.legal-page {
    padding: 60px 40px;
}

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

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

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

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

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

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

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

.legal-content a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
}

.legal-content a:hover {
    color: #2980b9;
}

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

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

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

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

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

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

    .thanks-actions {
        flex-direction: column;
    }

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

    .hero-text h1,
    .page-hero h1,
    .thanks-content h1 {
        font-size: 32px;
    }
}