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

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

.ad-disclosure {
    background-color: #f39c12;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
}

.nav-brand {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-offset {
    display: flex;
    min-height: 600px;
    position: relative;
}

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

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 800;
}

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

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

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

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

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

.intro-overlap {
    display: flex;
    align-items: flex-start;
    padding: 0 60px;
    margin-top: -80px;
    margin-bottom: 100px;
    position: relative;
    z-index: 10;
}

.intro-card {
    flex: 0 0 500px;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.intro-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
}

.intro-image {
    flex: 1;
    margin-left: 40px;
    margin-top: 60px;
    overflow: hidden;
    border-radius: 8px;
}

.intro-image img {
    width: 100%;
    height: 350px;
    display: block;
}

.services-asymmetric {
    padding: 100px 60px;
    background-color: #fafbfc;
}

.section-title-offset {
    font-size: 48px;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 800;
    padding-left: 20px;
}

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

.service-card {
    padding: 35px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.service-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 400px;
}

.service-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 350px;
}

.service-small {
    flex: 1 1 calc(40% - 15px);
    min-width: 300px;
}

.service-image {
    margin: -35px -35px 25px -35px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.trust-section {
    padding: 80px 60px;
    background-color: #34495e;
    color: #ffffff;
}

.trust-content {
    max-width: 700px;
    margin-bottom: 50px;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
}

.trust-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #bdc3c7;
}

.form-section {
    display: flex;
    margin: 100px 60px;
    gap: 50px;
}

.form-container-offset {
    flex: 0 0 500px;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
}

.form-container-offset h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.form-container-offset p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #34495e;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.form-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.testimonials-offset {
    padding: 80px 60px;
    background-color: #fafbfc;
}

.testimonials-offset h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
    padding-left: 20px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #7f8c8d;
}

.cta-final {
    padding: 100px 60px;
    text-align: center;
    background-color: #ecf0f1;
}

.cta-final h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #34495e;
}

.cta-secondary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    background-color: #34495e;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

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

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

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

.btn-cookie-accept:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

.btn-cookie-reject:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

.page-hero-small h1 {
    font-size: 48px;
    color: #2c3e50;
    font-weight: 800;
}

.about-story {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    align-items: center;
}

.about-content-offset {
    flex: 1;
}

.about-content-offset h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

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

.about-image {
    flex: 0 0 450px;
    overflow: hidden;
    border-radius: 8px;
}

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

.values-section {
    padding: 80px 60px;
    background-color: #fafbfc;
}

.values-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.team-section {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
}

.team-image {
    flex: 0 0 500px;
    overflow: hidden;
    border-radius: 8px;
}

.team-image img {
    width: 100%;
    height: 450px;
    display: block;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

.approach-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.approach-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 220px;
    padding: 35px;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.step-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #34495e;
}

.cta-about {
    padding: 80px 60px;
    text-align: center;
    background-color: #ffffff;
}

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #34495e;
}

.services-detailed {
    padding: 60px 60px;
}

.service-detail-card {
    display: flex;
    margin-bottom: 60px;
    gap: 50px;
    padding: 40px;
    border-radius: 8px;
}

.service-detail-image {
    flex: 0 0 400px;
    overflow: hidden;
    border-radius: 8px;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 25px;
}

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

.service-features li {
    font-size: 15px;
    color: #34495e;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

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

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

.btn-service-order {
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-service-order:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.services-note {
    padding: 60px 60px;
    background-color: #ecf0f1;
}

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

.note-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.note-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 30px;
}

.contact-layout {
    display: flex;
    padding: 60px 60px;
    gap: 50px;
}

.contact-info-block {
    flex: 0 0 500px;
    padding: 50px;
    border-radius: 8px;
}

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

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

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

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

.contact-map-area {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.contact-additional {
    padding: 80px 60px;
    background-color: #fafbfc;
}

.contact-additional h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.transport-info {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.transport-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    border-radius: 8px;
}

.transport-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.transport-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
}

.contact-cta {
    padding: 80px 60px;
    text-align: center;
    background-color: #ffffff;
}

.contact-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #34495e;
}

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

.thanks-container {
    max-width: 700px;
}

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #34495e;
    line-height: 1.8;
}

.thanks-service-info {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-service-info p {
    font-size: 16px;
    margin: 0;
}

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

.btn-thanks-home,
.btn-thanks-services {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-thanks-home:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-thanks-services {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-thanks-services:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.thanks-next-steps {
    padding: 80px 60px;
    background-color: #fafbfc;
}

.thanks-next-steps h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.step-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #34495e;
}

.legal-page {
    padding: 60px 60px 100px 60px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 800;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 700;
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

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

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-offset {
        flex-direction: column;
    }

    .hero-content-left {
        flex: 1;
    }

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

    .intro-overlap {
        flex-direction: column;
        padding: 40px 30px;
        margin-top: 0;
    }

    .intro-card {
        flex: 1;
    }

    .intro-image {
        margin-left: 0;
        margin-top: 30px;
    }

    .services-asymmetric {
        padding: 60px 30px;
    }

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

    .form-section {
        flex-direction: column;
        margin: 60px 30px;
    }

    .form-container-offset {
        flex: 1;
    }

    .about-story,
    .team-section {
        flex-direction: column;
        padding: 60px 30px;
    }

    .about-image,
    .team-image {
        flex: 1;
    }

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

    .service-detail-image {
        flex: 1;
    }

    .contact-layout {
        flex-direction: column;
        padding: 40px 30px;
    }

    .contact-info-block {
        flex: 1;
    }

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