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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.nav-right {
    display: flex;
    gap: 35px;
}

.nav-right a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background: #ecf0f1;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #546e7a;
}

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

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

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

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

.intro-section {
    padding: 90px 60px;
}

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

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #546e7a;
}

.intro-visual {
    flex: 1;
    background: #bdc3c7;
}

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

.services-preview {
    padding: 90px 60px;
    background: #f8f9fa;
}

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

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    max-width: 500px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #95a5a6;
}

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

.service-card p {
    padding: 0 25px 20px;
    color: #546e7a;
    font-size: 15px;
    flex-grow: 1;
}

.service-card .price {
    padding: 0 25px 15px;
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
}

.select-service {
    margin: 0 25px 25px;
    padding: 14px 30px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.form-section {
    padding: 90px 60px;
    background: #ffffff;
}

.form-container-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

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

.form-info p {
    font-size: 17px;
    color: #546e7a;
}

.form-wrapper {
    flex: 1;
    background: #ecf0f1;
    padding: 45px;
    border-radius: 8px;
}

.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: 14px;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

.service-display {
    padding: 14px;
    background: #ffffff;
    border: 2px solid #3498db;
    border-radius: 4px;
    color: #2c3e50;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #229954;
}

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

footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

.footer-disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 25px 60px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

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

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

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

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

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    opacity: 0.9;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background: #ecf0f1;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #546e7a;
}

.page-header {
    padding: 80px 60px 40px;
    background: #ecf0f1;
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-content {
    padding: 60px 60px 90px;
    max-width: 1200px;
}

.content-split {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.content-left {
    flex: 1;
}

.content-right {
    flex: 1;
}

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

.content-left p,
.content-right p,
.page-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #546e7a;
    line-height: 1.7;
}

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

.page-content ul li {
    margin-bottom: 10px;
    color: #546e7a;
}

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

.contact-info {
    flex: 1;
    background: #ecf0f1;
    padding: 40px;
    border-radius: 8px;
}

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

.contact-info p {
    margin-bottom: 15px;
    color: #546e7a;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.service-item {
    display: flex;
    gap: 40px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.service-item-image {
    flex: 0 0 350px;
    background: #bdc3c7;
}

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

.service-item-content {
    flex: 1;
}

.service-item-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item-content p {
    margin-bottom: 20px;
}

.service-item-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

@media (max-width: 768px) {
    .split-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .hero-split,
    .intro-split,
    .form-container-split,
    .content-split,
    .contact-grid,
    .service-item {
        flex-direction: column;
    }

    .hero-content,
    .form-wrapper {
        padding: 40px 20px;
    }

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

    .service-card {
        max-width: 100%;
    }

    .cookie-content {
        flex-direction: column;
    }

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

    .service-item-image {
        flex: 0 0 auto;
        height: 250px;
    }
}