* {
    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;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-left: 1rem;
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

.hero-left p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background-color: #e8eef3;
}

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

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

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    align-items: center;
}

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

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

.intro-text {
    flex: 1;
    padding: 3rem;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

.services-grid h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-image {
    background-color: #e8eef3;
    height: 250px;
}

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

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.select-service {
    padding: 0.8rem 1.5rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

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

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

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.trust-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.trust-items {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.trust-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
    margin-top: 5rem;
}

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

.footer-section {
    flex: 1 1 250px;
}

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

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

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

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

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

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

.disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    line-height: 1.5;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-actions {
    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 ease;
}

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

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

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

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

.page-hero p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
    padding: 2rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

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

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

.philosophy-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

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

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.philosophy-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    align-items: center;
}

.team-image {
    flex: 1;
    background-color: #e8eef3;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.team-text {
    flex: 1;
    padding: 3rem;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.team-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.values-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.values-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

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

.service-detail-content {
    flex: 1;
    padding: 2rem;
}

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

.service-detail-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.service-price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin: 1.5rem 0;
}

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

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

.cta-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    text-align: center;
}

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

.cta-section p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    gap: 3rem;
    padding: 0 2rem;
}

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-block p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    position: relative;
    background-color: #e8eef3;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44,62,80,0.95), transparent);
    padding: 2rem;
    color: #ffffff;
}

.map-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.map-overlay p {
    font-size: 1rem;
}

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

.legal-container {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

.legal-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-block {
    margin-bottom: 2rem;
}

.legal-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-block p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.legal-text h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-text h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-text h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-text p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.legal-text ul li {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.update-date {
    margin-top: 3rem;
    font-style: italic;
    color: #95a5a6;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.service-info-box {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-info-box p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-info {
    text-align: left;
    margin-top: 3rem;
}

.thanks-info h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1 1 250px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.step p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

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

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

    .hero-left,
    .intro-text,
    .about-text,
    .team-text {
        padding: 2rem;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .ad-disclosure {
        margin-left: 0;
    }

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

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