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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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;
    min-width: 300px;
}

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

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

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

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

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

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

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #2c3e50;
}

.hero-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

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

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

.split-intro {
    display: flex;
    align-items: center;
}

.intro-image {
    flex: 1;
    background: #e8e8e8;
}

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

.intro-content {
    flex: 1;
    padding: 80px 60px;
}

.intro-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.services-section {
    padding: 100px 60px;
    background: #ffffff;
}

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

.section-header-center h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 18px;
    color: #7f8c8d;
}

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

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

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

.service-image {
    background: #e8e8e8;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

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

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

.service-card.selected {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.service-card.selected .btn-select-service {
    background: #27ae60;
}

.form-section {
    padding: 100px 60px;
    background: #f8f9fa;
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.selected-service-display {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.selected-service-display p {
    margin-bottom: 10px;
    font-size: 16px;
}

.selected-service-display span {
    color: #3498db;
}

.form-container {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.trust-section {
    display: flex;
    padding: 100px 60px;
    background: #ffffff;
    align-items: center;
    gap: 60px;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.trust-content a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

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

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

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

.disclaimer-section {
    padding: 60px 60px;
    background: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

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

.disclaimer-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #856404;
}

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

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 60px 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

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

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

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
}

.references-list li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
}

.references-list li a:hover {
    color: #3498db;
}

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

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

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

.thanks-container .service-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #3498db;
}

.thanks-container .service-details h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.about-hero {
    padding: 100px 60px;
    background: #f8f9fa;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

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

.about-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.about-image-box {
    flex: 1;
    background: #e8e8e8;
}

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

.contact-page {
    padding: 100px 60px;
    background: #f8f9fa;
}

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

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

.contact-details {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.contact-item p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.contact-map {
    flex: 1;
    background: #e8e8e8;
    border-radius: 8px;
    min-height: 500px;
}

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

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

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

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

    .hero-split,
    .split-intro,
    .form-split,
    .trust-section,
    .about-split,
    .contact-split {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .services-grid {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .header-split,
    .services-section,
    .form-section,
    .trust-section,
    .about-content,
    .contact-page,
    .legal-page {
        padding: 40px 20px;
    }

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }
}
