* {
    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: #1a1a1a;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f8f8;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background-color: #ffffff;
    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: 700;
    color: #2c3e50;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 80px 6% 80px 8%;
    background-color: #f9fafb;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #4a4a4a;
    max-width: 520px;
}

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

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

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

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

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

.intro-image {
    flex: 1;
    background-color: #dfe4e8;
}

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

.intro-text {
    flex: 1;
    padding: 100px 8% 100px 6%;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.services-preview {
    padding: 100px 6%;
    background-color: #ffffff;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #1a1a1a;
}

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

.service-card {
    flex: 0 1 calc(50% - 20px);
    max-width: 520px;
    background-color: #f9fafb;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    background-color: #e0e4e8;
}

.service-card h3 {
    padding: 25px 30px 15px;
    font-size: 24px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 30px 15px;
    color: #4a4a4a;
    font-size: 16px;
}

.service-card .price {
    padding: 0 30px 20px;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.select-service {
    display: block;
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.approach-split {
    display: flex;
    align-items: center;
    background-color: #f4f6f8;
}

.approach-text {
    flex: 1;
    padding: 100px 6% 100px 8%;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.approach-image {
    flex: 1;
    background-color: #d8dde2;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-secondary {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 35px;
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.form-section {
    padding: 100px 6%;
    text-align: center;
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-section > p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #4a4a4a;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-form input,
.main-form select,
.main-form textarea {
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 18px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 6% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-col p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

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

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

.footer-disclaimer {
    padding-top: 30px;
    border-top: 1px solid #34495e;
    font-size: 14px;
    color: #95a5a6;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 6%;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

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

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

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

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

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

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 6%;
    text-align: center;
}

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

.thanks-content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.thanks-content a:hover {
    background-color: #1a252f;
}

.content-page {
    padding: 80px 6%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.content-page h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.content-page h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #34495e;
}

.content-page p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.content-page ul,
.content-page ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-page li {
    margin-bottom: 10px;
    color: #4a4a4a;
    line-height: 1.7;
}

.about-split {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.about-content {
    flex: 1;
    padding-right: 60px;
}

.about-image {
    flex: 1;
    background-color: #e4e8ec;
}

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

.services-detail {
    padding: 80px 6%;
}

.services-detail h1 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
    align-items: center;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

.service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

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

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

.service-detail-text .price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-detail-text p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.service-detail-text li {
    margin-bottom: 10px;
    color: #4a4a4a;
}

.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-info {
    flex: 1;
    padding: 80px 6%;
    background-color: #2c3e50;
    color: #ffffff;
}

.contact-info h1 {
    font-size: 44px;
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ecf0f1;
}

.contact-detail p {
    font-size: 18px;
    color: #bdc3c7;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background-color: #d8dde2;
}

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

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

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

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

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

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

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

    .about-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
}