* {
    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;
    overflow-x: hidden;
}

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

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.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;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

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

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

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

.hero-content p {
    font-size: 19px;
    margin-bottom: 40px;
    color: #555;
    max-width: 550px;
}

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

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

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

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

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

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

.intro-text {
    flex: 1;
}

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

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

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

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

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

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

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e8edf2;
}

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 22px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 25px 20px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.price {
    padding: 0 25px 15px;
    font-size: 26px;
    font-weight: 700;
    color: #3498db;
}

.select-service {
    margin: 0 25px 25px;
    padding: 12px 30px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: calc(100% - 50px);
}

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

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

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

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

.why-text {
    flex: 1;
}

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

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 15px 0 15px 35px;
    font-size: 17px;
    color: #555;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 20px;
}

.why-image {
    flex: 1;
    background-color: #f0f2f5;
}

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

.cta-section {
    padding: 100px 60px;
    background-color: #2c3e50;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 40px;
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button-secondary:hover {
    background-color: #ecf0f1;
}

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

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.contact-form {
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

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

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

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

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

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

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

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

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-column p {
    color: #bbb;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

.disclaimer {
    max-width: 1000px;
    margin: 30px auto 0;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
    text-align: center;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 25px 40px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    z-index: 2000;
    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;
    font-size: 15px;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #3498db;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #2980b9;
}

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

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

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

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

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

.thanks-container .service-info {
    margin: 30px 0;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    font-size: 16px;
}

.thanks-container .back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.contact-page {
    padding: 100px 60px;
    background-color: #fff;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

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

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

.info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.contact-map {
    flex: 1;
    background-color: #f0f2f5;
    min-height: 400px;
    border-radius: 8px;
}

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

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

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

.about-section {
    margin-bottom: 70px;
}

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

.about-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

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

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

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .why-split,
    .contact-content {
        flex-direction: column;
    }

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

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

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

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

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

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