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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.header-right {
    display: flex;
    gap: 32px;
}

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

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

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

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

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #34495e;
    max-width: 540px;
}

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

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

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

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

.intro-reverse {
    display: flex;
    flex-direction: row-reverse;
    min-height: 500px;
}

.intro-image {
    flex: 1;
    background: #95a5a6;
    overflow: hidden;
}

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

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

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

.intro-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #34495e;
    line-height: 1.7;
}

.values-split {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    background: #ffffff;
}

.values-left {
    flex: 0 0 320px;
}

.values-left h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.values-left p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

.values-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateX(4px);
}

.service-card img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    background: #bdc3c7;
}

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

.service-card p {
    font-size: 15px;
    color: #34495e;
    margin-bottom: 8px;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 8px;
}

.btn-select {
    margin-top: 12px;
    padding: 10px 20px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
    align-self: flex-start;
}

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

.form-section {
    padding: 80px 60px;
    background: #ecf0f1;
}

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

.form-container h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    color: #7f8c8d;
}

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

.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 16px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

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

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

.trust-section {
    padding: 80px 60px;
    background: #34495e;
    color: #ffffff;
}

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

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.95;
}

.disclaimer-section {
    padding: 60px;
    background: #f8f9fa;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col a,
.footer-col p {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

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

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

.thanks-container p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-container .service-selected {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    color: #3498db;
}

.about-hero {
    padding: 100px 60px;
    background: #ecf0f1;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-hero p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #34495e;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-grid {
    padding: 80px 60px;
    background: #ffffff;
}

.services-grid h1 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background: #34495e;
    color: #ffffff;
}

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

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #3498db;
}

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

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

.legal-page {
    padding: 80px 60px;
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

.legal-page ul {
    margin: 16px 0 16px 32px;
}

.legal-page li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #34495e;
    line-height: 1.6;
}

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

    .hero-split,
    .intro-reverse,
    .values-split,
    .about-content,
    .contact-split {
        flex-direction: column;
    }

    .values-left {
        flex: 1;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card img {
        width: 100%;
        height: 200px;
    }

    .footer-main {
        flex-direction: column;
    }

    .hero-content,
    .intro-text,
    .values-split,
    .form-section,
    .trust-section,
    .disclaimer-section,
    .about-hero,
    .about-content,
    .services-grid,
    .contact-info,
    .legal-page {
        padding: 40px 20px;
    }
}