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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #1a1a2e;
    background: #ffffff;
}

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

nav {
    background: #ffffff;
    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;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #2d3561;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #5865f2;
}

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

.split-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.split-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 85vh;
}

h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #2d3561;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: #5a5a7a;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #5865f2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88,101,242,0.3);
}

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

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

.content-half {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-half {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.image-half::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45,53,97,0.05);
}

h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #2d3561;
    font-weight: 700;
}

h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2d3561;
    font-weight: 600;
}

.content-half p {
    font-size: 17px;
    color: #4a4a6a;
    margin-bottom: 20px;
}

.content-half ul {
    list-style: none;
    margin: 30px 0;
}

.content-half li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #4a4a6a;
}

.content-half li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5865f2;
    font-weight: bold;
    font-size: 20px;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    background: #ffffff;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.cards-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 45px 35px;
    width: calc(50% - 15px);
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: #5865f2;
    box-shadow: 0 12px 30px rgba(88,101,242,0.15);
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 18px;
    color: #2d3561;
}

.service-card p {
    color: #5a5a7a;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #5865f2;
    margin: 20px 0;
}

.select-service-btn {
    width: 100%;
    padding: 14px;
    background: #f5f7fa;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    color: #2d3561;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.select-service-btn:hover {
    background: #5865f2;
    color: #ffffff;
    border-color: #5865f2;
}

.select-service-btn.selected {
    background: #5865f2;
    color: #ffffff;
    border-color: #5865f2;
}

.form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.form-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

footer {
    background: #1a1a2e;
    color: #ffffff;
    padding: 80px 40px 30px;
}

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

.footer-section {
    flex: 1;
}

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

.footer-section p,
.footer-section li {
    color: #b8b8d1;
    line-height: 1.8;
    font-size: 15px;
}

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

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

.footer-section a:hover {
    color: #5865f2;
}

.footer-bottom {
    border-top: 1px solid #2d3561;
    padding-top: 30px;
    text-align: center;
    color: #b8b8d1;
    font-size: 14px;
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.cookie-accept {
    background: #5865f2;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #4752c4;
}

.cookie-reject {
    background: #e9ecef;
    color: #1a1a2e;
}

.cookie-reject:hover {
    background: #d3d6db;
}

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

.image-left {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.content-right {
    flex: 1;
    padding: 100px 80px;
    background: #f5f7fa;
}

.values-list {
    margin-top: 40px;
}

.value-item {
    margin-bottom: 35px;
}

.value-item h4 {
    font-size: 22px;
    color: #2d3561;
    margin-bottom: 12px;
}

.value-item p {
    color: #5a5a7a;
    font-size: 16px;
}

.contact-info-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 40px;
}

.contact-details {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: 50px;
}

.contact-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e9ecef;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.contact-item p {
    color: #5a5a7a;
    font-size: 16px;
    line-height: 1.8;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
}

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

.legal-page ul {
    margin: 20px 0 20px 40px;
    color: #4a4a6a;
}

.legal-page li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 60px 40px;
}

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

.thanks-icon {
    font-size: 80px;
    color: #5865f2;
    margin-bottom: 30px;
}

.thanks-content h1 {
    margin-bottom: 25px;
}

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

.disclaimer {
    background: #f8f9fa;
    padding: 40px;
    border-left: 4px solid #5865f2;
    margin: 60px 0;
    border-radius: 6px;
}

.disclaimer p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .split-hero,
    .section-split,
    .about-split {
        flex-direction: column;
    }

    .split-right,
    .image-half,
    .image-left {
        min-height: 400px;
    }

    .service-card {
        width: 100%;
    }

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

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

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 32px;
    }
}