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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.navigation {
    background: #1a1a2e;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 0.85rem;
    color: #95a5a6;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    padding: 4rem;
    background: #ecf0f1;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.hero-right {
    flex: 1;
    background: #bdc3c7;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #3498db;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.intro-split {
    display: flex;
    align-items: center;
}

.intro-left {
    flex: 1;
    padding: 4rem;
}

.intro-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.intro-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.intro-right {
    flex: 1;
    background: #bdc3c7;
    min-height: 500px;
    position: relative;
}

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

.services-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

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

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 1.5rem);
    min-width: 320px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #bdc3c7;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a2e;
}

.service-card p {
    font-size: 1rem;
    margin: 0 1.5rem 1rem;
    color: #7f8c8d;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin: 1rem 1.5rem;
}

.select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 1.5rem;
    padding: 0.8rem;
    background: #1a1a2e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #3498db;
}

.form-split {
    display: flex;
}

.form-left {
    flex: 1;
    padding: 4rem;
    background: #1a1a2e;
    color: #ffffff;
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.form-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.form-right {
    flex: 1;
    background: #bdc3c7;
    min-height: 500px;
    position: relative;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #3498db;
}

.btn-submit {
    padding: 1rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #2980b9;
}

.trust-section {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

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

.trust-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #34495e;
}

.testimonial span {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
}

.final-cta {
    padding: 5rem 2rem;
    background: #3498db;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.footer {
    background: #1a1a2e;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.95rem;
    color: #95a5a6;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.9rem;
    color: #95a5a6;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    background: #2980b9;
}

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

.btn-reject:hover {
    border-color: #ffffff;
}

.page-hero {
    padding: 4rem 2rem;
    background: #ecf0f1;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.page-hero p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.about-split {
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.about-left {
    flex: 1;
    padding: 4rem;
}

.about-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.about-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.about-right {
    flex: 1;
    background: #bdc3c7;
    min-height: 500px;
    position: relative;
}

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

.philosophy-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.philosophy-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.philosophy-item {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.philosophy-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.philosophy-item p {
    font-size: 1rem;
    color: #7f8c8d;
}

.experience-split {
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.experience-left {
    flex: 1;
    padding: 4rem;
}

.experience-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.experience-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.experience-right {
    flex: 1;
    background: #bdc3c7;
    min-height: 500px;
    position: relative;
}

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

.values-section {
    padding: 4rem 2rem;
    background: #1a1a2e;
    text-align: center;
}

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

.values-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.values-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-split {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

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

.service-detail-left {
    flex: 1;
    background: #bdc3c7;
    min-height: 450px;
    position: relative;
}

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

.service-detail-right {
    flex: 1;
    padding: 3rem;
}

.service-detail-right h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.service-detail-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.form-section {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

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

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    text-align: center;
}

.form-container p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
    text-align: center;
}

.contact-split {
    display: flex;
    align-items: stretch;
}

.contact-left {
    flex: 1;
    padding: 4rem;
    background: #f8f9fa;
}

.contact-left h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.contact-item p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.contact-right {
    flex: 1;
    background: #bdc3c7;
    min-height: 500px;
    position: relative;
}

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

.location-section {
    padding: 4rem 2rem;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.location-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: #ecf0f1;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.thanks-content > p {
    font-size: 1.3rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.thanks-message {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-message p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 0.5rem;
}

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    color: #34495e;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #34495e;
    line-height: 1.8;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

.legal-content span {
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-split,
    .about-split,
    .experience-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .service-card {
        width: 100%;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

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