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

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

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

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

.nav-links a:hover {
    color: #2563eb;
}

.ad-label {
    font-size: 12px;
    color: #6b7280;
    background-color: #f3f4f6;
    padding: 4px 12px;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #60a5fa;
}

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

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

.btn-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1d4ed8;
}

.btn-reject {
    background-color: #6b7280;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #4b5563;
}

.hero-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1e293b;
}

.hero-text p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
}

.cta-hero {
    background-color: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hero-image {
    flex: 1;
    background-color: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-cards {
    padding: 80px 0;
    background-color: #f9fafb;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
}

.info-card p {
    color: #64748b;
    font-size: 15px;
}

.services-preview {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1e293b;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    background-color: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e5e7eb;
}

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

.service-details {
    padding: 30px;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1e293b;
}

.service-details p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 15px;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.btn-service {
    width: 100%;
    padding: 12px 24px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #1d4ed8;
}

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #1e293b;
}

.form-card > p {
    color: #64748b;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1d4ed8;
}

.why-choose {
    padding: 80px 0;
    background-color: #ffffff;
}

.why-choose h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1e293b;
}

.card-grid-small {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    background-color: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.feature-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e5e7eb;
}

.feature-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #1e293b;
}

.feature-card p {
    padding: 0 24px 24px;
    color: #64748b;
}

.main-footer {
    background-color: #1f2937;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section p {
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-section a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #60a5fa;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.5;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.about-content,
.services-detailed,
.contact-content {
    padding: 80px 0;
}

.content-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.content-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.content-text {
    flex: 1;
}

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

.content-text p {
    color: #64748b;
    margin-bottom: 16px;
    font-size: 16px;
}

.stats-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    background-color: #2563eb;
    color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.values-section {
    margin-bottom: 80px;
}

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

.value-card {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e293b;
}

.value-card p {
    color: #64748b;
}

.team-section {
    margin-bottom: 80px;
}

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

.team-section p {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 16px;
}

.team-image {
    border-radius: 12px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-section {
    text-align: center;
    padding: 60px;
    background-color: #f9fafb;
    border-radius: 12px;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1e293b;
}

.cta-section p {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 18px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e5e7eb;
}

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

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

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1e293b;
}

.service-detail-content p {
    color: #64748b;
    margin-bottom: 16px;
    font-size: 15px;
}

.price-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.price-label {
    color: #64748b;
    font-size: 16px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
}

.service-features {
    padding: 80px 0;
    background-color: #f9fafb;
}

.service-features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1e293b;
}

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

.feature-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e293b;
}

.feature-item p {
    color: #64748b;
    font-size: 15px;
}

.cta-section-page {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.cta-section-page h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1e293b;
}

.cta-section-page p {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 18px;
}

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

.contact-info-card,
.contact-map-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-info-card h2,
.contact-map-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1e293b;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 32px;
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1e293b;
}

.contact-details p {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 4px;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e5e7eb;
    height: 400px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

.contact-note {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-note h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1e293b;
}

.contact-note p {
    color: #64748b;
    margin-bottom: 12px;
    font-size: 15px;
}

.contact-note a {
    color: #2563eb;
    text-decoration: none;
}

.contact-note a:hover {
    text-decoration: underline;
}

.contact-visual {
    border-radius: 12px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.thanks-section {
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    text-align: center;
}

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

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e293b;
}

.thanks-message {
    color: #64748b;
    font-size: 18px;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #374151;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1e293b;
}

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

.step-card {
    flex: 1;
    min-width: 200px;
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1e293b;
}

.step-card p {
    color: #64748b;
    font-size: 14px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #6b7280;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #4b5563;
}

.thanks-info {
    padding: 20px;
    background-color: #eff6ff;
    border-radius: 8px;
}

.thanks-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e293b;
}

.thanks-info p {
    color: #64748b;
    font-size: 15px;
}

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

.legal-date {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1e293b;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1e293b;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #374151;
}

.legal-content p {
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content a {
    color: #2563eb;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .ad-label {
        display: none;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

    .footer-container {
        gap: 30px;
    }

    .legal-content {
        padding: 30px;
    }

    .thanks-card {
        padding: 40px 30px;
    }
}