* {
    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: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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;
    min-width: 300px;
    font-size: 14px;
}

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.header-left {
    flex: 0 0 auto;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

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

.hero-subtext {
    font-size: 19px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #f4f6f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

.intro-left-content {
    flex: 1.5;
}

.intro-left-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-left-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.intro-right-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #7f8c8d;
}

.services-grid-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

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

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 24px 20px;
}

.btn-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.process-section-split {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    background-color: #f8f9fa;
}

.process-left {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.process-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-right h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step-item {
    display: flex;
    gap: 24px;
}

.step-number {
    flex: 0 0 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2c3e50;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
}

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

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

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

.form-left-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left-info h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

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

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    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: #3498db;
}

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

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

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

.footer-content-split {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888888;
    margin-bottom: 10px;
}

.disclaimer-footer {
    font-size: 12px;
    color: #666666;
    max-width: 900px;
    margin: 20px auto 0;
    line-height: 1.6;
}

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

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

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

.service-selected {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    border-left: 4px solid #3498db;
}

.service-selected strong {
    color: #2c3e50;
}

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

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-left {
    flex: 1;
}

.contact-left h1 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

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

.contact-item p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
}

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

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

.page-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    padding-left: 32px;
}

.page-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
}

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

.service-detail-card {
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 0 0 400px;
    background-color: #e8e8e8;
}

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

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

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

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

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 24px;
}

@media (max-width: 1024px) {
    .header-split {
        padding: 20px 30px;
    }

    .hero-split,
    .intro-section,
    .services-grid-section,
    .process-section-split,
    .form-section {
        padding: 60px 30px;
    }

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

    .intro-split,
    .process-section-split,
    .form-container-split,
    .contact-split {
        flex-direction: column;
    }

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

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

    .service-detail-image {
        flex: 0 0 300px;
    }
}

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

    .header-right {
        flex-direction: column;
        gap: 20px;
    }

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

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

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