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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

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

.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5aa0;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #2c5aa0;
}

.nav-link.active {
    color: #2c5aa0;
}

.ad-notice {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 3px;
}

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

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.hero-subtext {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.hero-right {
    flex: 1;
    background: #2c5aa0;
}

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

.btn-primary {
    display: inline-block;
    background: #2c5aa0;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #234a7e;
}

.btn-secondary {
    display: inline-block;
    background: #ffffff;
    color: #2c5aa0;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid #2c5aa0;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background: #2c5aa0;
    color: #ffffff;
}

.intro-section {
    padding: 100px 20px;
    background: #ffffff;
}

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

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

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

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 250px;
    background: #e9ecef;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5aa0;
    margin-top: 20px;
}

.split-content-alt {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.split-left-image {
    flex: 1;
    background: #e9ecef;
}

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

.split-right-text {
    flex: 1;
    padding: 60px;
    background: #ffffff;
}

.split-right-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-right-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #333;
}

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
}

.testimonials {
    padding: 100px 20px;
    background: #ffffff;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    max-width: 350px;
    border-left: 4px solid #2c5aa0;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.form-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    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: #2c5aa0;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

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

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

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

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

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

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

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

.footer-disclaimer {
    background: #111;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
}

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

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

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

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #6ba3ff;
}

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

.btn-cookie {
    background: #2c5aa0;
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #234a7e;
}

.btn-cookie-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cookie-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

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

    .hero-left {
        padding: 50px 30px;
    }

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

    .split-content-alt {
        flex-direction: column;
    }

    .split-right-text {
        padding: 40px 30px;
    }

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

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

    .contact-form {
        padding: 30px 20px;
    }
}