* {
    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-nav {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

.nav-center a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.nav-right .ad-label {
    font-size: 12px;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 6px 12px;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s;
}

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

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

.cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

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

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.hero-right {
    position: relative;
    overflow: hidden;
    background: #dfe6e9;
}

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

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.cta-button-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #3498db;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background: #3498db;
    color: white;
}

.intro-section {
    padding: 80px 20px;
    text-align: center;
    background: #ffffff;
}

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

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

.benefits-split {
    display: flex;
    align-items: center;
}

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

.split-image-right {
    background: #dfe6e9;
}

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

.split-content-left {
    padding: 60px;
}

.split-content-left h3 {
    font-size: 32px;
    margin-bottom: 25px;
}

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

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

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.link-cta {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.link-cta:hover {
    color: #2980b9;
}

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

.services-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

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

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 300px;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

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

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

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 24px;
}

.service-card p {
    padding: 0 20px;
    color: #555;
    flex: 1;
}

.service-card .price {
    padding: 15px 20px;
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.service-card button {
    margin: 0 20px 20px;
    padding: 12px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.process-section {
    padding: 80px 20px;
}

.process-split {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.process-content {
    flex: 2;
}

.process-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    min-width: 50px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step p {
    color: #555;
}

.process-image {
    flex: 1;
    background: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
    min-width: 300px;
}

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

.form-section {
    padding: 80px 20px;
    background: #ecf0f1;
}

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

.form-section > div > p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
}

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

.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: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    color: white;
}

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

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

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

.footer-col a:hover {
    color: white;
}

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

.footer-bottom p {
    margin-bottom: 15px;
    color: #95a5a6;
}

.disclaimer {
    font-size: 13px;
    font-style: italic;
    max-width: 800px;
    margin: 15px auto;
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    padding: 80px 20px;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #555;
}

.about-image {
    flex: 1;
    background: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 35px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3498db;
}

.value-card p {
    color: #555;
}

.team-section {
    padding: 80px 20px;
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.team-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.approach-section {
    padding: 80px 20px;
    background: #ecf0f1;
}

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

.approach-image {
    flex: 1;
    background: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

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

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

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-section .cta-button {
    background: white;
    color: #667eea;
}

.cta-section .cta-button:hover {
    background: #f8f9fa;
}

.services-detail {
    padding: 80px 20px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

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

.price-display {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.service-detail-content button {
    padding: 15px 35px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-detail-content button:hover {
    background: #2980b9;
}

.service-detail-image {
    flex: 1;
    background: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.included-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.included-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.included-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 17px;
    border-bottom: 1px solid #e8e8e8;
}

.included-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
}

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

.contact-note {
    margin-top: 30px;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 6px;
}

.contact-map {
    flex: 1;
    background: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

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

.how-to-reach {
    padding: 80px 20px;
    background: #f8f9fa;
}

.how-to-reach h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.how-to-reach p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.thanks-section {
    padding: 100px 20px;
    text-align: center;
    min-height: 500px;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

.thanks-info {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
}

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

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

.next-steps h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.steps-list {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-item .step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.step-text p {
    color: #555;
    font-size: 17px;
}

.legal-content {
    padding: 80px 20px;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #34495e;
}

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

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-split,
    .benefits-split,
    .about-split,
    .approach-split,
    .process-split,
    .contact-grid,
    .service-detail-card {
        flex-direction: column;
    }

    .nav-center {
        gap: 15px;
        font-size: 13px;
    }

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

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

    .service-card {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

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

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