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

:root {
    --primary-color: #0066cc;
    --secondary-color: #004999;
    --accent-color: #00aaff;
    --dark-bg: #1a1a2e;
    --darker-bg: #0f0f1e;
    --light-text: #ffffff;
    --gray-text: #cccccc;
    --border-color: #333333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--primary-color);
    color: white;
}

.btn-accept:hover {
    background: var(--secondary-color);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-bg);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover {
    color: var(--primary-color);
}

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

.hero-left,
.hero-right {
    flex: 1;
}

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

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--dark-bg);
    font-weight: 800;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #555;
}

.hero-right {
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary,
.cta-large,
.cta-inline {
    display: inline-block;
    padding: 16px 36px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.cta-large {
    padding: 20px 48px;
    font-size: 18px;
}

.cta-inline {
    padding: 12px 28px;
    font-size: 16px;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 80px;
}

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

.split-text,
.split-image {
    flex: 1;
}

.split-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--dark-bg);
    line-height: 1.2;
}

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

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.dark-section {
    background: var(--dark-bg);
    color: var(--light-text);
}

.dark-section h2,
.dark-section h3 {
    color: var(--light-text);
}

.dark-section p {
    color: var(--gray-text);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 60px;
}

.center-text {
    text-align: center;
}

blockquote {
    font-size: 26px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
    padding-left: 30px;
}

cite {
    font-size: 16px;
    color: var(--gray-text);
    font-style: normal;
}

.services-preview {
    padding: 100px 80px;
    background: #f8f9fa;
}

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

.services-intro h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.services-intro p {
    font-size: 20px;
    color: #666;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-large {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-large.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-image {
    flex: 1;
    min-height: 300px;
}

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

.service-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0;
}

.select-service-btn {
    padding: 14px 32px;
    background: var(--dark-bg);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service-btn:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

.process-steps {
    margin-top: 40px;
}

.step-item {
    margin-bottom: 35px;
    padding-left: 25px;
    border-left: 3px solid var(--primary-color);
}

.step-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.step-item p {
    font-size: 17px;
    color: #666;
}

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

.form-container-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.form-left {
    flex: 1;
    color: white;
}

.form-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.form-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
    font-size: 20px;
}

.form-right {
    flex: 1;
}

.service-form {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.final-cta-section {
    padding: 120px 80px;
}

.final-cta-section h2 {
    font-size: 46px;
    margin-bottom: 25px;
}

.site-footer {
    background: var(--darker-bg);
    color: var(--gray-text);
    padding: 60px 80px 30px;
}

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

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.5);
}

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

.hero-content-center {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content-center h1 {
    font-size: 56px;
    color: white;
    margin-bottom: 20px;
}

.hero-content-center p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
}

.team-intro {
    text-align: center;
    margin-bottom: 60px;
}

.team-intro h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.team-intro p {
    font-size: 20px;
    color: #666;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark-bg);
}

.team-role {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.values-container {
    padding: 100px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.values-container h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray-text);
}

.service-detail-card {
    padding: 80px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-card.reverse .service-detail-split {
    flex-direction: row-reverse;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-content {
    flex: 1.2;
}

.service-detail-image {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.service-tagline {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.service-detail-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.service-detail-content ul {
    margin: 20px 0 20px 20px;
}

.service-detail-content li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.service-pricing {
    margin: 30px 0;
    padding: 25px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
}

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.services-process {
    padding: 100px 80px;
}

.services-process h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
}

.process-timeline {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.process-step {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 80px;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.contact-info > p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 50px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-note h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.thanks-section {
    padding: 120px 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.thanks-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    margin-bottom: 10px;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

.thanks-next {
    margin-bottom: 50px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--dark-bg);
    text-align: center;
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps li {
    counter-increment: step-counter;
    padding: 20px 20px 20px 60px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.next-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legal-page {
    padding: 60px 80px 100px;
    background: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.legal-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-container ul {
    margin: 15px 0 15px 30px;
}

.legal-container li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: none;
}

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

@media (max-width: 1200px) {
    .nav-container,
    .split-container,
    .form-container-split,
    .contact-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

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

    .hero-left {
        min-height: 60vh;
    }

    .hero-right {
        min-height: 50vh;
    }

    .split-container,
    .split-container.reverse,
    .service-detail-split,
    .form-container-split,
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .service-card-large,
    .service-card-large.reverse {
        flex-direction: column;
    }

    .process-timeline {
        flex-direction: column;
    }

    .stats-row {
        flex-direction: column;
    }

    .hero-content h1,
    .hero-content-center h1 {
        font-size: 42px;
    }

    .split-text h2 {
        font-size: 36px;
    }

    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-left,
    .split-container,
    .services-preview,
    .form-section,
    .container-narrow,
    .service-detail-card,
    .contact-section,
    .thanks-section,
    .legal-page {
        padding: 40px 20px;
    }

    .hero-content h1,
    .hero-content-center h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .split-text h2 {
        font-size: 28px;
    }

    .service-content {
        padding: 30px;
    }

    .service-price {
        font-size: 28px;
    }

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

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }

    .legal-container {
        padding: 30px 20px;
    }
}
