* {
    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: #333;
    background-color: #fff;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    background-color: #f9f9f9;
    padding: 4px 10px;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
}

.navigation {
    display: flex;
    gap: 30px;
}

.navigation a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #0f3460;
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

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

.hero-text {
    max-width: 500px;
    color: #fff;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #e94560;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.intro-section,
.about-content,
.team-section {
    padding: 80px 0;
}

.split-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.content-block {
    flex: 1;
    padding: 30px;
    border-radius: 8px;
}

.content-block img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.content-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.content-block p {
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
}

.services-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 380px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-card p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 12px 24px;
    background-color: #0f3460;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service:hover {
    background-color: #1a4d7a;
    transform: scale(1.02);
}

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

.form-container h2 {
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    width: 100%;
    padding: 14px 32px;
    background-color: #e94560;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.process-list {
    list-style: none;
    counter-reset: process-counter;
    padding: 20px 0;
}

.process-list li {
    counter-increment: process-counter;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: #0f3460;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.trust-section {
    padding: 80px 0;
    background-color: #f4f4f9;
}

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.testimonials {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 380px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial p {
    font-size: 16px;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial .author {
    font-weight: 600;
    color: #0f3460;
    font-style: normal;
}

.footer {
    background-color: #1a1a2e;
    color: #fff;
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
}

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

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    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 {
    margin: 0;
    flex: 1;
    font-size: 14px;
}

.cookie-content a {
    color: #e94560;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-accept:hover {
    background-color: #d43a54;
    transform: scale(1.05);
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
    transform: scale(1.05);
}

.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

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

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a2e;
}

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

.value-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    max-width: 480px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0f3460;
}

.value-item p {
    color: #666;
    font-size: 15px;
}

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

.service-detail-item {
    margin-bottom: 60px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #e94560;
    margin: 20px 0;
}

.warranty {
    color: #0f3460;
    font-weight: 600;
    font-size: 14px;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #e94560;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #d43a54;
    transform: translateY(-2px);
}

.contact-content {
    padding: 60px 0;
}

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

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f3460;
}

.contact-info p {
    color: #555;
    font-size: 16px;
}

.email-display {
    color: #333;
    font-weight: 500;
}

.contact-note {
    padding: 20px;
    margin-top: 20px;
}

.map-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.map-section p {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 16px;
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.thanks-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.thanks-info {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: #0f3460;
    color: #fff;
}

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

.btn-secondary {
    background-color: #e0e0e0;
    color: #333;
}

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

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

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

.legal-text h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #1a1a2e;
}

.legal-text h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #0f3460;
}

.legal-text p {
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.legal-text ul {
    margin: 15px 0 15px 30px;
}

.legal-text ul li {
    margin-bottom: 10px;
    color: #555;
}

.legal-text a {
    color: #0f3460;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.legal-text a:hover {
    border-bottom-color: #0f3460;
}

.last-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #999;
}

.url-display {
    color: #555;
}

.reset-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #0f3460;
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.reset-link:hover {
    background-color: #1a4d7a;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .split-left,
    .split-right {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
    }

    .navigation {
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .header-content {
        justify-content: center;
        text-align: center;
    }

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

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

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