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

.ad-notice {
    background: #f8f9fa;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

.nav-menu a:hover {
    color: #1a5490;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #1a5490 0%, #2c6ba8 100%);
    color: white;
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #1a5490;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.split-section {
    display: flex;
    align-items: stretch;
    min-height: 70vh;
}

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

.split-image {
    flex: 1;
    background: #f5f7fa;
}

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

.split-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.split-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
    line-height: 1.3;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.link-inline {
    color: #1a5490;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #1a5490;
    display: inline-block;
    transition: color 0.3s;
}

.link-inline:hover {
    color: #2c6ba8;
}

.benefits-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #444;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: bold;
    font-size: 1.3rem;
}

.services-preview {
    padding: 6rem 2rem;
    background: #f8f9fb;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    background: #e8f1f8;
    height: 250px;
}

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

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.6rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

.card-content p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 0.9rem 2rem;
    background: #1a5490;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-select:hover {
    background: #2c6ba8;
    transform: scale(1.02);
}

.form-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.form-intro {
    flex: 1;
    padding-right: 2rem;
}

.form-intro h2 {
    font-size: 2.4rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-item {
    padding: 1.2rem;
    background: #f8f9fb;
    border-left: 4px solid #1a5490;
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    color: #1a5490;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.trust-item span {
    color: #666;
    font-size: 0.95rem;
}

.form-wrapper {
    flex: 1;
    background: #f8f9fb;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.selected-service {
    padding: 1rem;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    color: #666;
    font-style: italic;
}

.selected-service.active {
    border-color: #1a5490;
    color: #1a5490;
    font-style: normal;
    font-weight: 600;
}

.btn-submit {
    padding: 1.1rem 2.5rem;
    background: #1a5490;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 1rem;
}

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

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

.disclaimer-section {
    padding: 4rem 2rem;
    background: #f8f9fb;
}

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

.disclaimer-content h3 {
    color: #1a5490;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.disclaimer-content p {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer {
    background: #1a2332;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    color: #ffffff;
}

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

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

.footer-column a {
    color: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-column p {
    color: #b8c5d6;
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2a3644;
    text-align: center;
    color: #8a96a5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: #1a5490;
    color: #fff;
}

.btn-accept:hover {
    background: #2c6ba8;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.cookie-link {
    color: #fff;
    text-decoration: underline;
    font-size: 0.9rem;
}

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a5490 0%, #2c6ba8 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.thanks-service-info {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-service-info strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.btn-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #1a5490;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s;
    margin-top: 1rem;
}

.btn-home:hover {
    transform: translateY(-2px);
}

.page-header {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a5490 0%, #2c6ba8 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

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

.page-content h2 {
    color: #1a5490;
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
}

.page-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.page-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.page-content li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-info-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    color: #1a5490;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .split-section,
    .form-container-split,
    .contact-info-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .hero-content,
    .split-content {
        padding: 3rem 2rem;
    }

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

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 1 calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.8rem 2rem;
    }

    .nav-toggle {
        display: flex;
    }

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

    .split-content h2,
    .section-header h2 {
        font-size: 1.8rem;
    }

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

    .footer-column {
        flex: 1 1 100%;
    }
}