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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    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;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.ad-notice {
    font-size: 12px;
    color: #757575;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.hero-left p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a4a4a;
}

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

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

.info-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

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

.info-image {
    flex: 1;
    background-color: #d7e3f0;
}

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

.info-content {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
}

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

.info-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.services-intro {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.services-header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.services-text {
    flex: 1;
}

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

.services-text p {
    font-size: 18px;
    color: #4a4a4a;
}

.services-cta {
    flex: 0 0 auto;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    margin: 0 24px 16px;
    color: #4a4a4a;
    flex: 1;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
    margin: 0 24px 16px;
    display: block;
}

.service-card .btn-select {
    margin: 0 24px 24px;
}

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.trust-content {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
}

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

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

.trust-list li {
    font-size: 17px;
    padding-left: 32px;
    margin-bottom: 20px;
    position: relative;
    color: #4a4a4a;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: 700;
    font-size: 20px;
}

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

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

.contact-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding: 0 30px;
}

.form-intro {
    flex: 1;
    padding-right: 40px;
}

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

.form-intro p {
    font-size: 18px;
    color: #4a4a4a;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-primary {
    background-color: #1a73e8;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

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

.btn-secondary {
    background-color: #757575;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-outline {
    background-color: transparent;
    color: #1a73e8;
    padding: 12px 28px;
    border: 2px solid #1a73e8;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background-color: #1a73e8;
    color: #ffffff;
}

.btn-select {
    background-color: #f0f4f8;
    color: #1a73e8;
    padding: 10px 24px;
    border: 1px solid #1a73e8;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-select:hover {
    background-color: #1a73e8;
    color: #ffffff;
}

.btn-select.selected {
    background-color: #1a73e8;
    color: #ffffff;
}

.disclaimer {
    background-color: #fff8e1;
    padding: 40px 0;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.disclaimer-content p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 1.6;
}

.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section p {
    font-size: 14px;
    color: #b0b0b0;
}

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

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

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

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

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

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

.page-header {
    background-color: #1a73e8;
    color: #ffffff;
    padding: 80px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

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

.content-split {
    display: flex;
    gap: 60px;
    margin: 60px 0;
}

.content-main {
    flex: 2;
}

.content-sidebar {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
}

.content-sidebar h3 {
    margin-bottom: 16px;
    color: #1a1a1a;
}

.content-sidebar p {
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 16px;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 16px;
    color: #4a4a4a;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0 16px 24px;
    color: #4a4a4a;
}

.legal-content li {
    margin-bottom: 8px;
}

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

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

.thanks-container p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

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

.contact-info-split {
    display: flex;
    gap: 60px;
    margin: 60px 0;
}

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

.contact-details h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 24px;
}

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

.contact-item p {
    font-size: 16px;
    color: #4a4a4a;
}

.contact-map {
    flex: 1;
}

@media (max-width: 1024px) {
    .hero-split,
    .info-split,
    .trust-split,
    .contact-split,
    .content-split,
    .contact-info-split,
    .services-header-split {
        flex-direction: column;
    }

    .info-split.reverse {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 10px;
    }

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

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

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