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

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

.main-nav {
    background: #fff;
    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: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.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: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #4a5568;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-btn:hover {
    background: #2980b9;
}

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

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

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

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

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

.intro-content {
    flex: 1;
    padding: 80px 60px;
    background: #fff;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-header p {
    font-size: 18px;
    color: #6c757d;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.service-image {
    flex: 1;
    background: #e0e0e0;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #4a5568;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}

.service-select {
    padding: 14px 35px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.service-select:hover {
    background: #229954;
}

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

.approach-content {
    flex: 1;
    padding: 80px 60px;
    color: #fff;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #ecf0f1;
}

.approach-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

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

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

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

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

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

.form-container > p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 35px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #2980b9;
}

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

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    line-height: 1.7;
    color: #95a5a6;
}

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

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

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

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

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

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

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

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

.cookie-btn.accept:hover {
    background: #229954;
}

.cookie-btn.reject {
    background: #e0e0e0;
    color: #2c3e50;
}

.cookie-btn.reject:hover {
    background: #d0d0d0;
}

.selected-service-display {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    border-left: 4px solid #27ae60;
}

.selected-service-display p {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
}

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

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

    .hero-content,
    .intro-content,
    .approach-content,
    .service-content {
        padding: 40px 30px;
    }

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

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