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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0066ff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

nav a:hover {
    color: #0066ff;
}

.hero-split {
    display: flex;
    min-height: 100vh;
    margin-top: 80px;
}

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

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1200');
}

.hero-left h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

.hero-left p {
    font-size: 20px;
    color: #495057;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: #0066ff;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: #0066ff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #0066ff;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

.cta-secondary:hover {
    background: #0066ff;
    color: white;
}

.split-section {
    display: flex;
    align-items: stretch;
}

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

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

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.split-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.split-content p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.split-content ul li {
    padding: 15px 0;
    font-size: 17px;
    color: #495057;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.split-content ul li:before {
    content: "✓";
    color: #0066ff;
    font-weight: bold;
    margin-right: 15px;
    font-size: 20px;
}

.bg-light {
    background: #f8f9fa;
}

.bg-dark {
    background: #1a1a1a;
    color: white;
}

.bg-dark h2,
.bg-dark p,
.bg-dark li {
    color: white;
}

.bg-dark ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 80px 0;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.service-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.price {
    font-size: 38px;
    font-weight: 700;
    color: #0066ff;
    margin: 25px 0;
}

.price span {
    font-size: 18px;
    color: #6c757d;
    font-weight: 400;
}

.form-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
}

.form-container p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 40px;
}

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

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

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

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

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

.section-title {
    text-align: center;
    padding: 80px 0 40px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-title p {
    font-size: 20px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.testimonial p {
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    padding: 20px 40px;
    background: #ff4757;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
    transition: all 0.3s;
    font-size: 16px;
}

.sticky-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 71, 87, 0.5);
}

footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
}

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

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

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

.footer-section a:hover {
    color: #0066ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #6c757d;
}

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

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept {
    background: #0066ff;
    color: white;
}

.btn-accept:hover {
    background: #0052cc;
}

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

.btn-reject:hover {
    background: white;
    color: #1a1a1a;
}

.about-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.about-hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.about-hero p {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.content-section {
    padding: 80px 60px;
}

.content-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.content-section p {
    font-size: 18px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    padding: 80px 0;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

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

.info-item h3 {
    font-size: 18px;
    color: #0066ff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.info-item p {
    font-size: 20px;
    color: #1a1a1a;
}

.contact-map {
    flex: 1;
    background: #e9ecef;
    min-height: 500px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.legal-page {
    padding: 140px 0 80px;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

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

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

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #495057;
}

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

.legal-page li {
    margin-bottom: 10px;
    color: #495057;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
    padding: 40px;
}

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

.thanks-content h1 {
    font-size: 64px;
    margin-bottom: 30px;
    font-weight: 800;
}

.thanks-content p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s;
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        transition: left 0.3s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    .hero-split,
    .split-section {
        flex-direction: column;
    }

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

    .hero-left h1 {
        font-size: 42px;
    }

    .split-content h2 {
        font-size: 32px;
    }

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

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 15px 30px;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .hero-left,
    .split-content,
    .form-section {
        padding: 60px 30px;
    }

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

    .section-title h2 {
        font-size: 36px;
    }

    .form-container {
        padding: 40px 30px;
    }
}
