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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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 {
    flex: 1;
    margin: 0;
}

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

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

.btn-cookie-accept {
    background-color: #2ecc71;
    color: #ffffff;
}

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

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

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    gap: 80px;
    align-items: center;
}

.hero-left {
    flex: 1;
}

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

.hero-left p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background-color: #f8f9fa;
}

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

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

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.intro-section {
    background-color: #ecf0f1;
    padding: 100px 60px;
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-image {
    flex: 0 0 45%;
    background-color: #d5dbdb;
}

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

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.service-image {
    flex: 0 0 400px;
    background-color: #d5dbdb;
}

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

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

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 24px;
    line-height: 1.7;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 20px;
    display: block;
}

.btn-select-service {
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.why-us-section {
    background-color: #2c3e50;
    padding: 100px 60px;
    color: #ffffff;
}

.why-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #ffffff;
}

.why-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #ecf0f1;
}

.why-image {
    flex: 0 0 45%;
    background-color: #34495e;
}

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

.contact-form-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 50px;
}

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

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    flex: 1;
    margin-bottom: 20px;
}

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

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2ecc71;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

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

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

.footer-split {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px;
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-column p,
.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    background-color: #0d0d0d;
    color: #7f8c8d;
    padding: 20px 60px;
    text-align: center;
    font-size: 14px;
}

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

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

.thanks-container p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-container .service-selected {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 30px 0;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.thanks-container a:hover {
    background-color: #2980b9;
}

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

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

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

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

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

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

.legal-page li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
}

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.about-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 100px 60px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: #ecf0f1;
}

.about-content {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 60px;
}

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

.about-section:nth-child(even) {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-image {
    flex: 0 0 45%;
    background-color: #ecf0f1;
}

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

.services-page-hero {
    background-color: #ecf0f1;
    padding: 80px 60px;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-page-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-full-list {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 60px;
}

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

    .header-right {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-direction: column;
        gap: 10px;
    }

    .hero-split {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }

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

    .intro-container {
        flex-direction: column;
        padding: 40px 20px;
    }

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

    .service-image {
        flex: 1;
        min-height: 250px;
    }

    .why-content-split {
        flex-direction: column;
        padding: 40px 20px;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-split {
        flex-direction: column;
        padding: 40px 20px;
    }

    .contact-split {
        flex-direction: column;
    }

    .about-section {
        flex-direction: column !important;
    }
}