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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

.btn-accept:hover {
    background: #229954;
}

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

.btn-reject:hover {
    background: #7f8c8d;
}

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.ad-disclosure {
    background: #f39c12;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
}

.hero-card {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    color: #fff;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
}

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

.cta-primary {
    background: #fff;
    color: #667eea;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.intro-cards {
    padding: 80px 20px;
    background: #fff;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 100%;
    height: 200px;
    background: #e9ecef;
    overflow: hidden;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #2c3e50;
}

.info-card p {
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card.featured {
    border: 3px solid #3498db;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #3498db;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 220px;
    background: #e9ecef;
    overflow: hidden;
}

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

.service-details {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.service-details p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
}

.feature-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #444;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.select-service {
    background: #3498db;
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    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: #e9ecef;
}

.btn-submit {
    width: 100%;
    background: #27ae60;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
}

.trust-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.trust-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.trust-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-section p {
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    font-size: 14px;
    color: #95a5a6;
    line-height: 1.6;
}

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
}

.about-content,
.services-detailed,
.contact-section,
.thanks-section,
.legal-page {
    padding: 60px 20px;
}

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

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

.card-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    background: #e9ecef;
}

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

.card-text {
    flex: 1;
    min-width: 300px;
}

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

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

.values-section,
.expertise-section {
    margin-bottom: 60px;
}

.values-section h2,
.expertise-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.value-cards,
.expertise-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 260px;
    max-width: 280px;
}

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

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

.expertise-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    flex: 1;
    min-width: 260px;
    max-width: 360px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.expertise-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.expertise-item p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: #fff;
}

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

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

.btn-primary {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.service-card-detailed {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.service-card-detailed.featured-service {
    border: 3px solid #3498db;
}

.featured-label {
    position: absolute;
    top: 20px;
    right: 40px;
    background: #3498db;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h2 {
    font-size: 32px;
    color: #2c3e50;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
}

.service-body {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.service-description {
    flex: 2;
    min-width: 300px;
}

.service-description h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #2c3e50;
}

.service-description p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.detailed-features {
    list-style: none;
    padding-left: 0;
}

.detailed-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #444;
    line-height: 1.6;
}

.detailed-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
}

.service-image-detailed {
    flex: 1;
    min-width: 280px;
    border-radius: 10px;
    overflow: hidden;
    background: #e9ecef;
}

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

.select-service-btn {
    width: 100%;
    background: #3498db;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.comparison-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
}

.comparison-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 25px;
    background: #fff;
    border-left: 4px solid #3498db;
    border-radius: 8px;
}

.comparison-note p {
    color: #555;
    line-height: 1.7;
}

.contact-layout {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-block p {
    color: #555;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    background: #e9ecef;
    height: 400px;
}

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

.response-info {
    margin-bottom: 60px;
}

.response-info h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.response-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

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

.quick-contact {
    text-align: center;
    padding: 50px 40px;
    background: #f8f9fa;
    border-radius: 12px;
}

.quick-contact h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.quick-contact p {
    color: #666;
    font-size: 18px;
    margin-bottom: 25px;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.success-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-card h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.thanks-message {
    margin-bottom: 50px;
}

.thanks-message p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

#serviceConfirmation {
    color: #27ae60;
    font-weight: 600;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.step-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 220px;
    max-width: 250px;
}

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

.step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-card p {
    color: #555;
    line-height: 1.6;
}

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

.btn-secondary {
    display: inline-block;
    background: #95a5a6;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

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

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

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

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

.legal-content ul li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .nav-container {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-content {
        padding: 30px 20px;
    }
}