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

.main-nav {
    background-color: #1a1a2e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-left .logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-center {
    display: flex;
    gap: 2rem;
}

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

.nav-center a:hover {
    color: #4a90e2;
}

.nav-right .ad-label {
    color: #95a5a6;
    font-size: 0.85rem;
    font-style: italic;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem;
    background-color: #16213e;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #ecf0f1;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background-color: #4a90e2;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

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

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

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

.intro-image {
    flex: 1;
    background-color: #7f8c8d;
}

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

.intro-text {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #ecf0f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.problem-section {
    padding: 6rem 2rem;
    background-color: #fff;
}

.problem-content {
    max-width: 1400px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.problem-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #e74c3c;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.problem-card p {
    font-size: 1.05rem;
    color: #555;
}

.problem-card a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
}

.problem-card a:hover {
    text-decoration: underline;
}

.services-split {
    background-color: #16213e;
    padding: 5rem 2rem;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    color: #fff;
}

.services-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: #bdc3c7;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a2e;
    padding: 2rem 2.5rem;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-details h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.8rem;
}

.service-details p {
    font-size: 1.05rem;
    color: #95a5a6;
    max-width: 700px;
}

.service-price {
    flex-shrink: 0;
    margin-left: 2rem;
}

.service-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a90e2;
}

.form-split {
    display: flex;
    min-height: 700px;
}

.form-image {
    flex: 1;
    background-color: #95a5a6;
}

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

.form-container {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-container > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.form-group {
    margin-bottom: 1.8rem;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a90e2;
}

.submit-button {
    background-color: #4a90e2;
    color: #fff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.trust-split {
    display: flex;
    min-height: 600px;
    background-color: #ecf0f1;
}

.trust-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.trust-content > p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #34495e;
    line-height: 1.7;
}

.disclaimer-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin-top: 2rem;
}

.disclaimer-box p {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.6;
}

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

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

.references-section {
    padding: 3rem 4rem;
    background-color: #f8f9fa;
    max-width: 1200px;
    margin: 0 auto;
}

.references-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.references-list {
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
}

.references-list a {
    color: #4a90e2;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: #1a1a2e;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #34495e;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4a90e2;
}

.footer-column p {
    color: #95a5a6;
    font-size: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    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: 2rem;
}

.cookie-content p {
    color: #ecf0f1;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #4a90e2;
    text-decoration: none;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #27ae60;
    color: #fff;
}

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

.cookie-reject {
    background-color: #95a5a6;
    color: #fff;
}

.cookie-reject:hover {
    background-color: #7f8c8d;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #fff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-content .service-selected {
    font-weight: 600;
    color: #4a90e2;
}

.thanks-content a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: #4a90e2;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-content a:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.page-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.page-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.page-container p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.page-container ul,
.page-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-container li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.page-container a {
    color: #4a90e2;
    text-decoration: none;
}

.page-container a:hover {
    text-decoration: underline;
}

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

.contact-info {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #16213e;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #ecf0f1;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #4a90e2;
}

.contact-item p {
    font-size: 1.05rem;
    margin: 0;
    color: #bdc3c7;
}

.contact-map {
    flex: 1;
    background-color: #34495e;
}

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

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .form-split,
    .trust-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price {
        margin-left: 0;
        margin-top: 1rem;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}