* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    border-top: 3px solid #27ae60;
}

.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;
    min-width: 300px;
    margin: 0;
}

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

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

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

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.main-nav {
    display: flex;
    gap: 28px;
}

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

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

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

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-left p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-right {
    flex: 1;
    background-color: #e8f5e9;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #27ae60;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #27ae60;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #27ae60;
    color: #ffffff;
}

.intro-split {
    display: flex;
    padding: 80px 60px;
}

.intro-image {
    flex: 0.9;
    background-color: #e8f5e9;
    overflow: hidden;
    border-radius: 8px;
}

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

.intro-text {
    flex: 1.1;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

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

.services-header h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.services-header p {
    font-size: 18px;
    color: #7f8c8d;
}

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

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

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

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

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 24px 24px 12px;
}

.service-card p {
    font-size: 15px;
    color: #5a6c7d;
    margin: 0 24px 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 24px 20px;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-left p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 28px;
}

.selected-service-display {
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
}

.selected-service-display strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 8px;
}

.selected-service-display span {
    color: #27ae60;
    font-size: 18px;
    font-weight: 600;
}

.form-right {
    flex: 1;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #dcdde1;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.values-split {
    display: flex;
    padding: 80px 60px;
    background-color: #ffffff;
}

.values-text {
    flex: 1.1;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-text h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.3;
}

.values-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.values-image {
    flex: 0.9;
    background-color: #e8f5e9;
    overflow: hidden;
    border-radius: 8px;
}

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

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

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

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

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

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

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

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

.disclaimer {
    font-size: 13px;
    color: #7f8c8d;
    max-width: 900px;
    margin: 16px auto 0;
    line-height: 1.6;
}

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

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

.hero-content h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 18px;
    color: #7f8c8d;
}

.hero-visual {
    flex: 1;
    background-color: #e8f5e9;
    overflow: hidden;
}

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

.about-story {
    display: flex;
    padding: 80px 60px;
}

.story-left {
    flex: 1.1;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-left h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.story-left p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.story-right {
    flex: 0.9;
    background-color: #e8f5e9;
    overflow: hidden;
    border-radius: 8px;
}

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

.team-values {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

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

.value-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 36px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

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

.value-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.expertise-split {
    display: flex;
    padding: 80px 60px;
    background-color: #ffffff;
}

.expertise-image {
    flex: 0.9;
    background-color: #e8f5e9;
    overflow: hidden;
    border-radius: 8px;
}

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

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

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

.expertise-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.expertise-text a {
    margin-top: 16px;
}

.services-page-hero {
    text-align: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.services-page-hero h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.services-page-hero p {
    font-size: 18px;
    color: #7f8c8d;
}

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

.service-detail-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-detail-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-detail-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-price-display {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.btn-service-select {
    display: inline-block;
    padding: 16px 36px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

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

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

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

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

.cta-section h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 32px;
}

.contact-hero {
    text-align: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.contact-hero h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 18px;
    color: #7f8c8d;
}

.contact-split {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 32px;
}

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

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

.contact-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: #e8f5e9;
    overflow: hidden;
    border-radius: 8px;
}

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

.location-info {
    padding: 60px 60px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.location-info h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.location-info p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-section {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    min-height: 500px;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.thanks-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-service {
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
    margin-bottom: 32px;
}

.thanks-service p {
    margin: 0;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.thanks-visual {
    flex: 1;
    background-color: #e8f5e9;
    overflow: hidden;
    border-radius: 8px;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
}

.legal-page h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

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

.legal-page p,
.legal-page li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.legal-page em {
    color: #7f8c8d;
    font-size: 15px;
}

.legal-page a {
    color: #27ae60;
    text-decoration: none;
}

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

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 20px;
    }

    .hero-split,
    .intro-split,
    .form-split,
    .values-split,
    .about-story,
    .expertise-split,
    .service-detail-split,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

    .intro-text,
    .values-text,
    .story-left,
    .expertise-text {
        padding-left: 0;
        padding-right: 0;
        padding-top: 40px;
    }

    .page-hero-split {
        flex-direction: column;
    }

    .hero-left h1,
    .hero-content h1,
    .services-page-hero h1,
    .contact-hero h1 {
        font-size: 36px;
    }

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

    .value-item {
        flex: 1 1 100%;
    }

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