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

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 60px auto;
    gap: 0;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 32px;
    color: #5a6c7d;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #2980b9;
}

.hero-image {
    flex: 1;
    background: #e9ecef;
    overflow: hidden;
}

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

.intro-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.intro-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a252f;
}

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

.intro-stats {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-box {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    border-left: 4px solid #3498db;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #5a6c7d;
}

.services-section {
    background: #ffffff;
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a252f;
}

.section-header p {
    font-size: 19px;
    color: #5a6c7d;
}

.service-item {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    gap: 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background: #e9ecef;
    min-height: 400px;
}

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

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

.service-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-details p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #5a6c7d;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.service-features span {
    background: #e3f2fd;
    color: #1976d2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

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

.select-service-btn {
    padding: 14px 28px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.select-service-btn:hover {
    background: #229954;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    opacity: 0.95;
}

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

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

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
}

.form-info p {
    font-size: 18px;
    margin-bottom: 36px;
    color: #5a6c7d;
    line-height: 1.8;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: #2c3e50;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    background: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.form-container {
    flex: 1;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.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: 14px;
    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: #3498db;
}

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

.form-submit:hover {
    background: #2980b9;
}

.selected-service-info {
    margin-top: 20px;
    padding: 16px;
    background: #e3f2fd;
    border-radius: 6px;
    display: none;
    color: #1976d2;
    font-weight: 500;
}

.selected-service-info.active {
    display: block;
}

.testimonials-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

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

.testimonial-author {
    font-weight: 600;
    color: #5a6c7d;
    font-size: 15px;
}

.main-footer {
    background: #1a252f;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-column p {
    color: #95a5a6;
    line-height: 1.8;
}

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

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

.footer-column ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.disclaimer {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
}

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

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

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

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

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

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

.cookie-btn.accept:hover {
    background: #229954;
}

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

.cookie-btn.reject:hover {
    background: #7f8c8d;
}

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

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

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #1a252f;
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 16px;
    color: #2c3e50;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.page-content ul {
    margin: 20px 0 20px 30px;
}

.page-content ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #5a6c7d;
}

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

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-details {
    flex: 1;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a252f;
}

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

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

.contact-item p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.about-intro {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
}

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

.about-image {
    flex: 1;
    background: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

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

.values-section {
    background: #f8f9fa;
    padding: 80px 40px;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a252f;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-grid {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-card-image {
    width: 100%;
    height: 220px;
    background: #e9ecef;
}

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

.service-card-content {
    padding: 30px;
}

.service-card-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a252f;
}

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

.service-card-price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
}

.learn-more-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.learn-more-btn:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-split,
    .service-item,
    .testimonials-grid,
    .footer-content,
    .contact-split,
    .about-split,
    .values-grid {
        flex-direction: column;
    }

    .service-item.reverse {
        flex-direction: column;
    }

    .hero-content h1,
    .page-header h1 {
        font-size: 36px;
    }

    .section-header h2,
    .testimonials-section h2 {
        font-size: 32px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

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