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

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

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

.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    background-color: #ecf0f1;
}

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

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    background-color: #fff;
}

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

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.features-split {
    display: flex;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #fff;
}

.split-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

.feature-item {
    margin-bottom: 35px;
}

.feature-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-item p {
    color: #555;
    font-size: 1rem;
}

.process-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

.process-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.process-card p {
    color: #555;
}

.gallery-split {
    display: flex;
}

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

.gallery-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gallery-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.gallery-grid {
    flex: 1;
    display: flex;
}

.gallery-item {
    flex: 1;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-split {
    display: flex;
    min-height: 700px;
}

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

.cta-left h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-left p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-benefits {
    list-style: none;
}

.cta-benefits li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
}

.cta-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-size: 1.3rem;
    color: #3498db;
}

.cta-right {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

.contact-form h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    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: 15px;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-column p {
    color: #bdc3c7;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

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

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

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

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #7f8c8d;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px 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: 20px;
    flex-wrap: wrap;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: #95a5a6;
    color: #fff;
}

.btn-reject:hover {
    opacity: 0.9;
}

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

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

.page-hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.services-section {
    padding: 60px 0;
}

.service-split {
    display: flex;
    margin-bottom: 80px;
}

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

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

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

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

.service-details h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-details p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    color: #3498db;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-top: 25px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.price-note {
    font-size: 1rem;
    color: #7f8c8d;
}

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

.cta-services h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cta-services p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.about-split {
    display: flex;
    margin: 60px 0;
}

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

.about-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

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

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

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

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

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

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.value-card p {
    color: #555;
    line-height: 1.7;
}

.process-split {
    display: flex;
    margin: 60px 0;
}

.process-image {
    flex: 1;
    overflow: hidden;
}

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

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

.process-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

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

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

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

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.team-split {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.team-info {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.team-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.team-info p {
    color: #555;
    line-height: 1.7;
}

.cta-about {
    background-color: #2c3e50;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.contact-split {
    display: flex;
    margin: 60px 0;
}

.contact-info-block {
    flex: 1;
    padding: 60px;
    background-color: #f8f9fa;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

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

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

.contact-item p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-item .note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 10px;
}

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

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

.contact-details {
    padding: 80px 0;
    background-color: #fff;
}

.contact-details h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

.help-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.help-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 8px;
}

.help-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.help-card p {
    color: #555;
    line-height: 1.7;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: #555;
}

.contact-form-full {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    font-size: 1.1rem;
    color: #2c3e50;
}

.thanks-next h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.next-steps {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    gap: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    flex: 1;
    color: #555;
    line-height: 1.7;
    padding-top: 10px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.update-date {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

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

.legal-section h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-section p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-section li {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

@media (max-width: 768px) {
    .hero-split,
    .features-split,
    .gallery-split,
    .cta-split,
    .service-split,
    .about-split,
    .process-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-left,
    .split-content,
    .gallery-content,
    .cta-left,
    .cta-right,
    .service-details,
    .about-content,
    .process-content,
    .contact-info-block {
        padding: 40px 30px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .nav-menu {
        gap: 15px;
    }

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

    .section-title {
        font-size: 2rem;
    }

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

    .contact-form-full {
        padding: 30px;
    }

    .form-row {
        flex-direction: column;
    }

    .next-steps {
        flex-direction: column;
    }
}