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

.ad-disclosure {
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.875rem;
}

.main-nav {
    background-color: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

.nav-links a:hover {
    color: #27ae60;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    color: #555;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #229954;
    cursor: pointer;
}

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

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

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

.intro-left {
    flex: 1;
    background-color: #e0f2f1;
}

.intro-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-right p {
    font-size: 1.0625rem;
    margin-bottom: 20px;
    color: #555;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header p {
    font-size: 1.125rem;
    color: #777;
}

.service-card-split {
    display: flex;
    margin-bottom: 60px;
    min-height: 400px;
}

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

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

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

.service-info {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.service-info h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-info p {
    font-size: 1.0625rem;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
}

.price {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.select-service {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.25rem;
    margin-bottom: 15px;
    text-align: center;
    color: #2c3e50;
}

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

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 25px;
}

.selected-service-display p {
    margin-bottom: 5px;
    color: #2c3e50;
    text-align: left;
}

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

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

.trust-section {
    display: flex;
    min-height: 450px;
}

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

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.trust-content p {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.7;
}

.trust-image {
    flex: 1;
    background-color: #f1f8e9;
}

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

.page-hero {
    background-color: #27ae60;
    color: #ffffff;
    text-align: center;
    padding: 100px 40px;
}

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

.page-hero p {
    font-size: 1.25rem;
}

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

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

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.0625rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background-color: #e0f7fa;
}

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

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

.about-values h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1 1 calc(50% - 40px);
    min-width: 300px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #27ae60;
}

.value-item p {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.7;
}

.expertise-section {
    display: flex;
    min-height: 500px;
}

.expertise-image {
    flex: 1;
    background-color: #e8f5e9;
}

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

.expertise-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.expertise-list {
    list-style-position: inside;
    margin-bottom: 25px;
}

.expertise-list li {
    font-size: 1.0625rem;
    margin-bottom: 12px;
    color: #555;
}

.expertise-text p {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.7;
}

.team-approach {
    padding: 80px 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-approach h2 {
    font-size: 2.25rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.team-approach p {
    font-size: 1.0625rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

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

.service-detail-card {
    display: flex;
    margin-bottom: 80px;
    min-height: 500px;
}

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

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

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

.service-detail-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.0625rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
}

.service-price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 1.125rem;
    color: #2c3e50;
}

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

.cta-section {
    padding: 80px 40px;
    text-align: center;
    background-color: #ecf0f1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 35px;
    color: #555;
}

.contact-section {
    display: flex;
    padding: 60px 40px;
    gap: 60px;
    align-items: center;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #27ae60;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.6;
}

.contact-image-block {
    flex: 1;
    background-color: #e3f2fd;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.approach-section {
    padding: 80px 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.approach-section h2 {
    font-size: 2.25rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.approach-section p {
    font-size: 1.0625rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    display: flex;
    min-height: 500px;
    align-items: center;
}

.thanks-content {
    flex: 1;
    padding: 80px 60px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.0625rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.thanks-details {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0;
}

.thanks-details p {
    margin-bottom: 5px;
}

.thanks-image {
    flex: 1;
    background-color: #f1f8e9;
}

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

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

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

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

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #27ae60;
}

.footer-column p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #ecf0f1;
}

.footer-column a {
    display: block;
    color: #ecf0f1;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.9375rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #27ae60;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: #bdc3c7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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;
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .intro-section,
    .service-card-split,
    .trust-section,
    .about-split,
    .expertise-section,
    .service-detail-card,
    .contact-section,
    .thanks-section {
        flex-direction: column;
    }

    .service-card-split.reverse,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

    .hero-content h1,
    .page-hero h1 {
        font-size: 2rem;
    }

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

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