* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #0066cc;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.hero-left p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #444;
}

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

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

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

.cta-button:hover {
    background: #0052a3;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

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

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

.approach-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 100px auto 60px;
    padding: 0 40px;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 18px;
    color: #555;
}

.service-cards {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

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

.service-image {
    height: 240px;
    background: #e8e8e8;
}

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

.service-info {
    padding: 30px;
}

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

.service-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #0052a3;
}

.select-service.selected {
    background: #28a745;
}

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
}

.process-content {
    flex: 1;
    padding: 80px 60px;
    background: #f9f9f9;
}

.process-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0066cc;
}

.step p {
    font-size: 16px;
    color: #555;
}

.process-image {
    flex: 1;
    background: #e8e8e8;
}

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

.form-section {
    background: #f9f9f9;
    padding: 100px 40px;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
}

.form-container p {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input, textarea {
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #0066cc;
}

#serviceDisplay {
    padding: 16px;
    background: #e8f4ff;
    border-radius: 4px;
    color: #0066cc;
    font-weight: 600;
    display: none;
}

#serviceDisplay.active {
    display: block;
}

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

.submit-btn:hover {
    background: #0052a3;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
    padding: 30px 40px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    font-size: 15px;
    color: #444;
}

.cookie-content a {
    color: #0066cc;
}

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

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

.cookie-accept {
    background: #0066cc;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #0052a3;
}

.cookie-reject {
    background: #f0f0f0;
    color: #1a1a1a;
}

.cookie-reject:hover {
    background: #e0e0e0;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #28a745;
}

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

.back-home {
    display: inline-block;
    margin-top: 30px;
    background: #0066cc;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.back-home:hover {
    background: #0052a3;
}

.page-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
}

.page-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
}

.page-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-container p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.7;
}

.page-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-container li {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    gap: 60px;
}

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

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0066cc;
}

.info-block p {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background: #e8e8e8;
    min-height: 500px;
}

@media (max-width: 1024px) {
    .hero-split, .approach-split, .process-split, .contact-split {
        flex-direction: column;
    }

    .approach-split.reverse {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 20px);
    }

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

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

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 32px;
    }

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

    .nav-links {
        gap: 20px;
    }

    .nav-container {
        padding: 0 20px;
    }
}