* {
    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: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
}

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

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

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

.nav-right {
    display: flex;
    gap: 32px;
}

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

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

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

.hero-text {
    flex: 1;
    padding: 60px 5% 60px 8%;
    background-color: #f8f9fa;
}

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

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #34495e;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

.intro-section {
    padding: 80px 8%;
    background-color: #ffffff;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
}

.services-preview {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

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

.services-grid {
    display: flex;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 16px;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 24px 16px;
    color: #34495e;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 16px 24px;
}

.btn-secondary {
    display: inline-block;
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.split-content-reverse {
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.content-image {
    flex: 1;
    background-color: #ecf0f1;
}

.content-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

.content-text {
    flex: 1;
    padding: 60px 8% 60px 5%;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.content-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.form-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 32px;
    color: #34495e;
    line-height: 1.6;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 5% 0;
}

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

.footer-section {
    flex: 1;
    min-width: 240px;
}

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

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

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

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

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

.footer-section a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

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

@media (max-width: 968px) {
    .hero-split,
    .split-content-reverse {
        flex-direction: column;
    }

    .hero-text,
    .content-text {
        padding: 48px 5%;
    }

    .hero-image,
    .content-image {
        min-height: 400px;
    }

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

    .nav-right {
        gap: 16px;
        font-size: 14px;
    }

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

@media (max-width: 640px) {
    .split-nav {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .nav-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .form-container {
        padding: 32px 24px;
    }
}

.page-hero {
    background-color: #34495e;
    color: #ffffff;
    padding: 80px 8%;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.page-hero p {
    font-size: 20px;
    line-height: 1.8;
}

.about-content {
    padding: 80px 8%;
    background-color: #ffffff;
}

.about-text-full {
    max-width: 900px;
    margin: 0 auto;
}

.about-text-full h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-text-full p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #34495e;
}

.approach-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

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

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

.approach-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.team-intro {
    padding: 80px 8%;
    background-color: #ffffff;
}

.team-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.team-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #34495e;
}

.team-content img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.services-detailed {
    padding: 60px 5%;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #34495e;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: #2c3e50;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.service-price-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.cta-section {
    padding: 80px 5%;
    background-color: #3498db;
    text-align: center;
}

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

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

.cta-content p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

.contact-page {
    padding: 60px 5%;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-info-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-info-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-info-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 8px;
}

.contact-info-item .email-display {
    color: #34495e;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.thanks-content h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 16px;
}

.thanks-content .btn-primary {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.thanks-content .btn-primary:hover {
    background-color: #2980b9;
}

.legal-page {
    padding: 60px 8%;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.legal-container h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-container ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #34495e;
}

.legal-container .last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

@media (max-width: 968px) {
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .approach-steps {
        flex-direction: column;
    }

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