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

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

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

.main-header {
    background: #1a1a2e;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #f39c12;
}

.ad-label {
    background: #f39c12;
    color: #1a1a2e;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.hero-text h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.hero-right {
    flex: 1;
    background: #2c3e50;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.intro-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.intro-section p {
    font-size: 18px;
    color: #555;
}

.split-info,
.split-reverse,
.split-content {
    display: flex;
    min-height: 500px;
}

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

.split-left {
    background: #ecf0f1;
    overflow: hidden;
}

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

.split-right {
    display: flex;
    align-items: center;
    padding: 60px;
}

.content-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-box p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
}

.link-arrow {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: #764ba2;
}

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

.split-reverse .split-left {
    background: #2c3e50;
}

.services-preview {
    padding: 80px 20px;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 20px 10px;
    color: #666;
    font-size: 15px;
}

.service-card .price {
    padding: 10px 20px;
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
}

.btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #764ba2;
}

.form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.form-section > .container-narrow > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: #555;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    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: #667eea;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #764ba2;
}

.cta-banner {
    padding: 80px 20px;
    background: #1a1a2e;
    text-align: center;
}

.cta-banner h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    background: #f39c12;
    color: #1a1a2e;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243,156,18,0.3);
}

.main-footer {
    background: #16213e;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #f39c12;
}

.footer-col p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #f39c12;
}

.footer-bottom {
    border-top: 1px solid #2c3e50;
    padding-top: 30px;
    text-align: center;
}

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

.disclaimer {
    font-size: 12px;
    color: #666;
    font-style: italic;
    max-width: 800px;
    margin: 20px auto 0;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

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

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

.cookie-content p {
    color: #ffffff;
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    opacity: 0.9;
}

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

.page-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 20px;
    color: #f0f0f0;
}

.services-detailed {
    padding: 60px 20px;
}

.service-detail-card {
    display: flex;
    margin-bottom: 60px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.service-detail-left {
    flex: 1;
    overflow: hidden;
    background: #ecf0f1;
}

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

.service-detail-right {
    flex: 1;
    padding: 40px;
}

.service-detail-right h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.about-intro {
    padding: 60px 20px;
    background: #f8f9fa;
}

.lead-text {
    font-size: 22px;
    line-height: 1.8;
    color: #2c3e50;
}

.values-section {
    padding: 80px 20px;
    background: #ffffff;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #667eea;
}

.value-item p {
    color: #555;
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-member img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.team-member h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
    color: #2c3e50;
}

.team-member p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
}

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-left {
    flex: 1;
    background: #f8f9fa;
    padding: 60px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.info-block h3 {
    font-size: 18px;
    color: #667eea;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-block p {
    color: #555;
    line-height: 1.8;
}

.contact-right {
    flex: 1;
    background: #2c3e50;
    overflow: hidden;
}

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

.location-section {
    padding: 60px 20px;
    background: #ffffff;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.location-section p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
    max-width: 800px;
}

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

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

.thanks-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
}

.thanks-content .lead-text {
    font-size: 24px;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.thanks-content p {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 16px;
}

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

.btn-primary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 14px 34px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #667eea;
}

.next-steps {
    padding: 80px 20px;
    background: #ffffff;
}

.next-steps h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.steps-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #667eea;
}

.step-item p {
    color: #555;
}

.legal-page {
    padding: 60px 20px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #667eea;
}

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

.legal-page ul {
    margin: 16px 0 16px 40px;
}

.legal-page ul li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.8;
}

.legal-page a {
    color: #667eea;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #764ba2;
}

@media (max-width: 768px) {
    .hero-split,
    .split-info,
    .split-reverse,
    .split-content,
    .service-detail-card,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .split-right,
    .service-detail-right,
    .contact-left {
        padding: 40px 20px;
    }

    .hero-text h1,
    .page-hero h1,
    .thanks-content h1 {
        font-size: 32px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .services-grid,
    .values-grid,
    .team-grid,
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

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