* {
    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: #1a1a1a;
    background-color: #ffffff;
}

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

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

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

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

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

.nav-links a:hover {
    color: #0066cc;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    background-color: #f8f9fa;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #0052a3;
}

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

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

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

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

.intro-text-right {
    flex: 1;
    padding: 0 30px;
}

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

.intro-text-right p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.services-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 18px;
    color: #555;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

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

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

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

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

.service-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.price-label {
    font-size: 14px;
    color: #777;
    margin-bottom: 4px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
}

.select-service-btn {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #0052a3;
}

.form-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

.form-text {
    flex: 1;
}

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

.form-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 28px;
}

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

.form-benefits li {
    font-size: 17px;
    color: #333;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 20px;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

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

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

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

.btn-submit {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

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

.trust-text-left {
    flex: 1;
    padding: 0 30px;
}

.trust-text-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.trust-text-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

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

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

.disclaimer-section {
    padding: 60px 30px;
    background-color: #fff3cd;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #856404;
}

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

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

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

.footer-column p {
    font-size: 15px;
    color: #adb5bd;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #343a40;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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 {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

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

.cookie-btn.accept {
    background-color: #28a745;
    color: #ffffff;
}

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

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

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

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

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

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.thanks-container .selected-service-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.thanks-container .selected-service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.thanks-container .selected-service-info p {
    font-size: 16px;
    color: #666;
}

.thanks-container .btn-home {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.thanks-container .btn-home:hover {
    background-color: #0052a3;
}

.about-hero {
    padding: 80px 30px;
    background-color: #f8f9fa;
    text-align: center;
}

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

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

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

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

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

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

.contact-hero {
    padding: 80px 30px;
    background-color: #f8f9fa;
    text-align: center;
}

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

.contact-hero p {
    font-size: 20px;
    color: #555;
}

.contact-details {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 30px;
}

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

.contact-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .intro-split {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .form-split {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }

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