* {
    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;
}

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
}

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

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

.nav-links a:hover {
    color: #1a73e8;
}

.hero-split {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

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

.hero-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #1a73e8;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1557b0;
}

.cta-secondary {
    display: inline-block;
    background-color: #34a853;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2d8e47;
}

.services-intro {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 12px;
}

.intro-text {
    flex: 1.2;
}

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

.intro-text p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

.services-grid {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.services-grid h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.service-card .price {
    padding: 15px 20px 20px 20px;
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
}

.form-section {
    background-color: #f0f4f8;
    padding: 80px 20px;
    margin-top: 80px;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-info p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #2c3e50;
    font-size: 16px;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #34a853;
    font-weight: 700;
    font-size: 18px;
}

.form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.trust-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 20px;
    text-align: center;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 200px;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 17px;
    color: #5a6c7d;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 20px 20px 20px;
    margin-top: 80px;
}

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

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

.footer-col p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #1a73e8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    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;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-btn.accept {
    background-color: #34a853;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #5a6268;
}

.page-header {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
}

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

.page-header p {
    font-size: 19px;
    color: #5a6c7d;
}

.about-split {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.about-text {
    flex: 1;
}

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

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

.values-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #1a73e8;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.team-section {
    background-color: #f0f4f8;
    padding: 80px 20px;
}

.team-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.7;
}

.team-image {
    flex: 1;
    background-color: #d4e9f2;
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.cta-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 20px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.cta-section h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

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

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

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

.service-detail-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #2c3e50;
    font-size: 15px;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #1a73e8;
    font-weight: 700;
    font-size: 20px;
}

.price-box {
    display: inline-block;
    background-color: #e8f4f8;
    color: #1a73e8;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 24px;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    background-color: #d4e9f2;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.contact-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a73e8;
}

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

.contact-map-placeholder {
    flex: 1;
    background-color: #e0e7ed;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    text-align: center;
    padding: 30px;
}

.map-overlay p {
    font-size: 18px;
    color: #5a6c7d;
    font-weight: 600;
}

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

.additional-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.additional-content a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.additional-content a:hover {
    color: #1557b0;
}

.thanks-section {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.thanks-container {
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #34a853;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
}

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

.thanks-message {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    background-color: #1a73e8;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1557b0;
}

.btn-secondary {
    display: inline-block;
    background-color: #6c757d;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.thanks-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.thanks-info ul {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.thanks-info ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: #5a6c7d;
    font-size: 15px;
}

.thanks-info ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: 700;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    line-height: 1.8;
}

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

.legal-page h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 19px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

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

.legal-page a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-page a:hover {
    color: #1557b0;
}

@media (max-width: 768px) {
    .hero-split,
    .services-intro,
    .about-split,
    .team-content,
    .form-container-split,
    .service-detail-item,
    .contact-section {
        flex-direction: column;
    }

    .service-detail-item.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

    .trust-items {
        flex-direction: column;
    }

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

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

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}