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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    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 {
    list-style: none;
    display: flex;
    gap: 35px;
}

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

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

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

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

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

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #495057;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #1a252f;
}

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

.feature-split.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a252f;
}

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

.feature-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-header p {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.7;
}

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

.service-card {
    display: flex;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.service-info h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a252f;
}

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

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

.select-service,
.select-service-detail {
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.select-service:hover,
.select-service-detail:hover {
    background-color: #2980b9;
}

.cta-split {
    display: flex;
    min-height: 500px;
    background-color: #ecf0f1;
}

.cta-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.cta-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
}

.cta-form-wrapper {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 18px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
}

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

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

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

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

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

.info-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

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

.info-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

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

.footer-column ul li a:hover {
    color: #3498db;
}

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    z-index: 2000;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 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;
}

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

.page-hero h1 {
    font-size: 48px;
    color: #1a252f;
}

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

.about-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

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

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.values-split.reverse {
    flex-direction: row-reverse;
}

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

.values-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

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

.values-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.approach-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

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

.approach-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.experience-section {
    padding: 80px 60px;
    background-color: #ecf0f1;
}

.experience-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.experience-wrapper h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a252f;
    text-align: center;
}

.experience-wrapper p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.services-detail-split {
    display: flex;
    min-height: 500px;
    margin-bottom: 50px;
}

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

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

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

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

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin: 30px 0 25px;
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.service-cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

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

.contact-info-content h2 {
    font-size: 36px;
    margin-bottom: 35px;
    color: #1a252f;
}

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

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

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

.contact-map-placeholder {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.contact-note-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-note-wrapper h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.contact-note-wrapper p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.thanks-section {
    padding: 120px 60px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #1a252f;
}

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

.thanks-content a {
    display: inline-block;
    margin-top: 20px;
}

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

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a252f;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #495057;
}

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

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #495057;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2980b9;
}

@media (max-width: 768px) {
    .hero-split,
    .feature-split,
    .cta-split,
    .info-split,
    .about-split,
    .values-split,
    .approach-split,
    .services-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .feature-split.reverse,
    .values-split.reverse,
    .services-detail-split.reverse {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

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

    .feature-content h2,
    .info-content h2,
    .about-content h2,
    .values-content h2,
    .approach-content h2,
    .service-detail-content h2 {
        font-size: 28px;
    }

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

    .footer-content {
        flex-direction: column;
    }
}