* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.nav-menu li a {
    color: #e0e6ed;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    color: #4a9eff;
    border-bottom-color: #4a9eff;
}

.ad-notice {
    background-color: #ffc107;
    color: #1a2332;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.split-section {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

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

.split-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8ecef;
}

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

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

.hero-section {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: #ffffff;
    min-height: 700px;
}

.hero-section .split-left {
    background: transparent;
    padding: 6rem 4rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #d0d8e0;
}

.cta-button {
    display: inline-block;
    background-color: #4a9eff;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
}

.cta-button:hover {
    background-color: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.4);
}

.cta-secondary {
    background-color: transparent;
    border: 2px solid #4a9eff;
    color: #4a9eff;
    box-shadow: none;
}

.cta-secondary:hover {
    background-color: #4a9eff;
    color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.section-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #546e7a;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(74, 158, 255, 0.2);
    border-color: #4a9eff;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #4a9eff 0%, #3182ce 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a2332;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #4a9eff;
    margin-bottom: 1.5rem;
}

.service-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #7f8c9a;
}

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

.select-service-btn:hover {
    background-color: #4a9eff;
}

.service-card.selected {
    border-color: #4a9eff;
    background-color: #f0f8ff;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 4rem;
}

.about-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background-color: #e8ecef;
}

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

.contact-section {
    background-color: #f8fafb;
    padding: 5rem 4rem;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

.contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #7f8c9a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.15rem;
    color: #1a2332;
    line-height: 1.6;
}

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

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

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

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

.form-input:focus {
    outline: none;
    border-color: #4a9eff;
}

.form-select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e0e6ed;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #ffffff;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.form-select:focus {
    outline: none;
    border-color: #4a9eff;
}

.submit-btn {
    width: 100%;
    background-color: #4a9eff;
    color: #ffffff;
    padding: 1.1rem;
    border-radius: 6px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #d0d8e0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4a9eff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2c3e50;
    text-align: center;
    color: #7f8c9a;
    font-size: 0.9rem;
}

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

.disclaimer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #856404;
    margin-bottom: 0.5rem;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #856404;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #4a9eff;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: transparent;
    border: 2px solid #d0d8e0;
    color: #d0d8e0;
}

.cookie-reject:hover {
    background-color: #2c3e50;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a2332;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #546e7a;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    color: #546e7a;
}

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

.thanks-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 4rem 3rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a9eff 0%, #3182ce 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
}

.thanks-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
    .split-section {
        flex-direction: column;
        min-height: auto;
    }

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

    .split-left {
        padding: 3rem 2rem;
    }

    .split-right {
        min-height: 400px;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
