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

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 14px;
    border-bottom: 1px solid #ffeaa7;
}

.header-main {
    background-color: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.hero-card {
    max-width: 1200px;
    margin: 60px auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-content {
    padding: 60px 50px;
}

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

.hero-content p {
    font-size: 18px;
    color: #555555;
    max-width: 800px;
}

.hero-image-wrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.intro-cards {
    max-width: 1200px;
    margin: 80px auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.card-primary {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.card-primary img {
    width: 45%;
    height: 380px;
    object-fit: cover;
    background-color: #dee2e6;
}

.card-text {
    padding: 50px;
    flex: 1;
}

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

.card-text p {
    font-size: 17px;
    color: #555555;
    line-height: 1.7;
}

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

.service-selection-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
}

.service-selection-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.service-selection-section > p {
    font-size: 18px;
    margin-bottom: 60px;
    opacity: 0.95;
}

.service-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    width: 360px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.service-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

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

.service-card p {
    font-size: 15px;
    color: #666666;
    padding: 0 24px 16px;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #1a73e8;
    padding: 12px 24px;
}

.btn-select-service {
    background: #1a73e8;
    color: #ffffff;
    border: none;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: auto;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: #1557b0;
}

.form-section {
    max-width: 1200px;
    margin: 80px auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
}

.form-container {
    flex: 1;
    padding: 60px 50px;
}

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

.form-container > p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 36px;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #1a73e8;
    font-weight: 600;
}

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

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

.form-image-side {
    width: 40%;
    background-color: #e9ecef;
}

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

.trust-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 50px;
    background: #f8f9fa;
    border-left: 4px solid #1a73e8;
    border-radius: 8px;
}

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

.trust-section p {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
}

.trust-section a {
    color: #1a73e8;
    text-decoration: none;
}

.trust-section a:hover {
    text-decoration: underline;
}

.footer-main {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
    margin-top: 100px;
}

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

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

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

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

.footer-col a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.reference-item {
    font-size: 12px;
    color: #999999;
    margin-bottom: 8px;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.disclaimer p {
    font-size: 13px;
    color: #aaaaaa;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    text-align: center;
}

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

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.btn-cookie-accept {
    background: #1a73e8;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #1557b0;
}

.btn-cookie-reject {
    background: #ffffff;
    color: #2c3e50;
}

.btn-cookie-reject:hover {
    background: #e9ecef;
}

.page-hero {
    max-width: 1200px;
    margin: 60px auto;
    padding: 60px 40px;
    text-align: center;
}

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

.page-hero p {
    font-size: 18px;
    color: #555555;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.about-card.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-image {
    width: 45%;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

.value-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

.services-detail {
    max-width: 1200px;
    margin: 80px auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.service-detail-image {
    width: 40%;
    height: 420px;
    background-color: #e9ecef;
}

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

.service-detail-content {
    flex: 1;
    padding: 50px;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 20px;
}

.service-detail-content > p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-detail-content li {
    font-size: 15px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

.btn-service-action:hover {
    background: #1557b0;
}

.services-cta {
    max-width: 800px;
    margin: 80px auto;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: #ffffff;
}

.services-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.contact-content {
    max-width: 1200px;
    margin: 80px auto;
    display: flex;
    gap: 50px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-info-card {
    flex: 1;
    padding: 50px;
}

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

.contact-detail {
    margin-bottom: 32px;
}

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

.contact-detail p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
}

.contact-image-side {
    width: 45%;
    background-color: #e9ecef;
}

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

.contact-additional {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.contact-additional p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-additional a {
    color: #1a73e8;
    text-decoration: none;
}

.contact-additional a:hover {
    text-decoration: underline;
}

.thanks-content {
    max-width: 1200px;
    margin: 80px auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.thanks-card {
    flex: 1;
}

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

.thanks-card > p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 40px;
}

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

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    padding: 24px;
    background: #f8f9fa;
    border-left: 4px solid #1a73e8;
    border-radius: 6px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a73e8;
}

.step p {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

.thanks-additional {
    margin-bottom: 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.thanks-additional h2 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.thanks-additional p {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

.thanks-additional a {
    color: #1a73e8;
    text-decoration: none;
}

.thanks-additional a:hover {
    text-decoration: underline;
}

.thanks-actions {
    display: flex;
    gap: 16px;
}

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

.btn-secondary:hover {
    background: #f0f7ff;
}

.thanks-image {
    width: 40%;
    background-color: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

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

.legal-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 50px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: #1a73e8;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 15px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.legal-content li {
    font-size: 15px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: #1a73e8;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

    .nav-main {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .card-primary,
    .about-card,
    .service-detail-card,
    .form-section,
    .contact-content,
    .thanks-content {
        flex-direction: column;
    }

    .card-primary img,
    .about-image,
    .service-detail-image,
    .form-image-side,
    .contact-image-side,
    .thanks-image {
        width: 100%;
    }

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

    .footer-columns {
        flex-direction: column;
    }
}