* {
    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: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

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

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

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

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

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

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    text-align: center;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px;
}

.intro-image {
    flex: 1;
    background-color: #dfe6e9;
}

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

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

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

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

.services-preview {
    background-color: #f8f9fa;
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 42px;
    color: #2c3e50;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-image {
    flex: 1;
    min-height: 350px;
    background-color: #dfe6e9;
}

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

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

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

.service-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 10px;
}

.form-section {
    background-color: #ffffff;
    padding: 100px 20px;
}

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

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

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

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

.form-right {
    flex: 1;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

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

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

.trust-section {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

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

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.95;
}

.secondary-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #ffffff;
    border-radius: 6px;
    transition: all 0.3s;
}

.secondary-link:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.main-footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

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

.footer-column p {
    line-height: 1.8;
    opacity: 0.9;
}

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

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

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: #27ae60;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    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;
    line-height: 1.6;
}

.cookie-content a {
    color: #27ae60;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

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

.detail-left {
    flex: 1;
}

.detail-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.detail-right {
    flex: 1;
}

.detail-right h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.detail-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

.detail-right ul li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #555;
}

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

.cta-section {
    background-color: #27ae60;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-content .cta-button {
    background-color: #ffffff;
    color: #27ae60;
}

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

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    gap: 80px;
}

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

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

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

.about-image {
    flex: 1;
}

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

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

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.philosophy-item {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.philosophy-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #27ae60;
}

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

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

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
}

.team-image {
    flex: 1;
}

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

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

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

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

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

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

.values-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.values-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.contact-main {
    padding: 80px 20px;
}

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

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #27ae60;
}

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

.contact-map {
    flex: 1;
}

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

.contact-hours-detail {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

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

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

.hours-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

.location-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
}

.location-image {
    flex: 1;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

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

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

.thanks-section {
    padding: 100px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.thanks-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

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

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

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

.secondary-button:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.thanks-image {
    flex: 1;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.legal-page {
    padding: 60px 20px 100px;
}

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

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

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #27ae60;
}

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

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

.legal-container ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.legal-container a {
    color: #27ae60;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-card,
    .service-card.reverse,
    .form-container-split,
    .about-split,
    .team-split,
    .contact-split,
    .location-split,
    .thanks-container,
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

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

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

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

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