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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a252f;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

.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: 1rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: background 0.3s;
}

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

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

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

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    background: #ecf0f1;
    border-radius: 4px;
}

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

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

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.15rem;
    color: #f8f9fa;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    background: #34495e;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    background: #f39c12;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.intro-section,
.approach-section {
    padding: 5rem 2rem;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.split-image-left,
.split-image-right {
    flex: 1;
    background: #ecf0f1;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.split-content-right,
.split-content-left {
    flex: 1;
    padding: 2rem;
}

.split-content-right h2,
.split-content-left h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.split-content-right p,
.split-content-left p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.feature-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 1rem;
    color: #7f8c8d;
    margin: 0;
}

.approach-section {
    background: #f8f9fa;
}

.services-preview {
    padding: 5rem 2rem;
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 240px;
    background: #ecf0f1;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    padding: 1.5rem;
}

.service-info h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.btn-service {
    width: 100%;
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 0.9rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.testimonial-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonial-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

blockquote {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

blockquote p {
    font-size: 1.1rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1rem;
}

cite {
    font-size: 0.95rem;
    color: #f8f9fa;
    font-style: normal;
}

.form-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.form-description {
    flex: 1;
}

.form-description h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.form-description p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.form-container {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d1d8dd;
    border-radius: 4px;
    font-size: 1rem;
    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;
}

.btn-submit {
    width: 100%;
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #229954;
}

.disclaimer-section {
    padding: 2rem;
    background: #ecf0f1;
    border-left: 4px solid #e74c3c;
}

.disclaimer-section p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #34495e;
}

.main-footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    color: #95a5a6;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.thanks-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 1rem;
}

.service-highlight {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.service-highlight strong {
    color: #3498db;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-container h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.page-container h2 {
    font-size: 2rem;
    color: #34495e;
    margin: 2.5rem 0 1rem;
}

.page-container h3 {
    font-size: 1.5rem;
    color: #3498db;
    margin: 2rem 0 1rem;
}

.page-container p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.page-container ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.page-container ul li {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 0.8rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

.email-display {
    color: #34495e;
    font-weight: 600;
}

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

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

    .testimonial-content {
        flex-direction: column;
    }

    .form-split {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .footer-content {
        flex-direction: column;
    }
}