* {
    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: rgba(44, 62, 80, 0.97);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.btn-cookie.reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.header {
    background-color: #fff;
    padding: 18px 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
}

.nav {
    display: flex;
    gap: 32px;
}

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

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

.hero-split {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.hero-left {
    flex: 1;
}

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

.hero-left p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 36px;
    line-height: 1.7;
}

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

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

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.intro-split {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

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

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

.intro-text {
    flex: 1;
}

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

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

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

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

.service-card p {
    font-size: 16px;
    color: #546e7a;
    padding: 0 24px 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    padding: 0 24px 16px;
}

.btn-service {
    margin: 0 24px 24px;
    padding: 14px 24px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section-split {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.form-text {
    flex: 1;
}

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

.form-text p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.8;
}

.form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-field input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

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

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

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

.trust-split {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.trust-content p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.trust-image {
    flex: 1;
    background-color: #e8f4f8;
}

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

.disclaimer-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 40px;
    background-color: #fef5e7;
    border-left: 4px solid #f39c12;
}

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.8;
    font-style: italic;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
    margin-top: 100px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

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

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

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

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

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

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
}

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

.thanks-container p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.thanks-container .btn-primary {
    margin-top: 40px;
}

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

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

.legal-page .update-date {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
}

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

.legal-page p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-page ul li {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.contact-split {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-top: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 24px;
}

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

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

.info-block p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
}

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

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

.about-hero {
    text-align: center;
    margin-bottom: 80px;
}

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

.about-hero p {
    font-size: 22px;
    color: #546e7a;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    background-color: #e8f4f8;
}

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

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

.services-intro {
    text-align: center;
    margin-bottom: 80px;
}

.services-intro h1 {
    font-size: 52px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.services-intro p {
    font-size: 20px;
    color: #546e7a;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .form-section-split,
    .trust-split,
    .contact-split,
    .about-split {
        flex-direction: column;
        gap: 40px;
    }

    .hero-left h1,
    .about-hero h1,
    .services-intro h1 {
        font-size: 40px;
    }

    .service-card {
        flex: 1 1 calc(50% - 32px);
    }
}

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

    .nav {
        gap: 16px;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}