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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

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

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

.cookie-content a {
    color: #4CAF50;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: #666;
    color: white;
}

.btn-reject:hover {
    background-color: #555;
}

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

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

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

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4CAF50;
}

.ad-label {
    font-size: 12px;
    color: #666;
    border: 1px solid #ddd;
    padding: 5px 12px;
    border-radius: 3px;
    background-color: #f9f9f9;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.split-right {
    background-color: #e8f5e9;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
    max-width: 550px;
}

.hero-image {
    overflow: hidden;
    position: relative;
}

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

.cta-primary {
    background-color: #4CAF50;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.intro-reverse {
    display: flex;
    min-height: 500px;
}

.intro-image {
    background-color: #fff3e0;
}

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

.intro-text {
    padding: 60px 80px;
}

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

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

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

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

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    flex: 0 1 calc(50% - 15px);
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 30px 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    margin: 0 30px 20px;
    color: #666;
    flex: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #4CAF50;
    margin: 0 30px 20px;
}

.btn-select {
    background-color: #2c3e50;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    margin: 0 30px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.why-choose-split {
    display: flex;
    min-height: 550px;
    background-color: #f0f4f8;
}

.why-content {
    padding: 60px 80px;
}

.why-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    font-size: 17px;
    margin-bottom: 25px;
    color: #555;
    padding-left: 30px;
    position: relative;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
    font-size: 22px;
}

.why-image {
    background-color: #e1f5fe;
}

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

.cta-section {
    padding: 100px 40px;
    background-color: #2c3e50;
    text-align: center;
}

.cta-container h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

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

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

.form-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

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

.form-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-left p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #555;
}

.form-info {
    background-color: #e8f5e9;
    padding: 30px;
    border-radius: 8px;
}

.form-info p {
    font-weight: 600;
    margin-bottom: 15px;
}

.form-info ol {
    list-style-position: inside;
    color: #555;
}

.form-info li {
    margin-bottom: 10px;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

.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 ease;
}

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

.btn-submit {
    background-color: #4CAF50;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

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

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

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

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

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

.footer-section ul li a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4CAF50;
}

.email-display {
    color: #bbb;
    font-style: normal;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px 0;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

.page-hero {
    padding: 100px 40px;
    background-color: #2c3e50;
    text-align: center;
}

.hero-content-centered h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.hero-content-centered p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-split {
    display: flex;
    min-height: 500px;
}

.about-image {
    background-color: #e3f2fd;
}

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

.about-text {
    padding: 60px 80px;
}

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

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

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

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

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

.value-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    color: #666;
}

.team-reverse {
    display: flex;
    min-height: 500px;
}

.team-text {
    padding: 60px 80px;
}

.team-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.team-image {
    background-color: #fce4ec;
}

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

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

.process-steps {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    background-color: #f0f4f8;
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #4CAF50;
    display: block;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.process-step p {
    font-size: 16px;
    color: #666;
}

.services-detailed {
    padding: 60px 40px;
}

.service-detail-item {
    margin-bottom: 80px;
}

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

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

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

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

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

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

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

.service-detail-content ul {
    margin-bottom: 30px;
}

.service-detail-content ul li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #666;
    padding-left: 25px;
    position: relative;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-size: 20px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 25px;
    display: block;
}

.contact-info-section {
    padding: 60px 40px;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.contact-note {
    background-color: #e8f5e9;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 16px;
    color: #555;
}

.map-placeholder {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

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

.thanks-section {
    padding: 100px 40px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-info ul {
    list-style-position: inside;
    color: #555;
}

.thanks-info li {
    margin-bottom: 12px;
    font-size: 16px;
}

#selectedServiceDisplay {
    font-size: 18px;
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 25px;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #4CAF50;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #2c3e50;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.legal-page {
    padding: 60px 40px 100px;
    background-color: #ffffff;
}

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

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

.update-date {
    font-size: 16px;
    color: #888;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.legal-container ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-container ul li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
    list-style-type: disc;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-reverse,
    .why-choose-split,
    .about-split,
    .team-reverse,
    .contact-split,
    .form-split,
    .service-detail-split {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 40px;
    }

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

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

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

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

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

    .nav-links {
        gap: 10px;
        font-size: 14px;
    }

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

    .cta-container h2 {
        font-size: 32px;
    }
}