* {
    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: #2c3e50;
    background-color: #f8f9fa;
}

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

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

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

.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;
    text-decoration: none;
}

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

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

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

.hero-card {
    background-color: #fff;
    margin: 30px auto;
    max-width: 1200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-content {
    padding: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-image {
    background-color: #e0e7ff;
}

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

.intro-cards {
    padding: 60px 20px;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.info-card p {
    color: #64748b;
    line-height: 1.7;
}

.featured-content {
    padding: 60px 20px;
    background-color: #fff;
}

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

.card-image-wrapper {
    flex: 1;
    min-width: 400px;
    background-color: #e0e7ff;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.card-text-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1e293b;
}

.card-text-content p {
    margin-bottom: 20px;
    color: #475569;
    font-size: 17px;
    line-height: 1.8;
}

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

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

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

.service-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 320px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    background-color: #e0e7ff;
    height: 240px;
}

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

.service-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.service-info p {
    color: #64748b;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.select-service-btn {
    background-color: #2563eb;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

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

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

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e293b;
}

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

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

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #10b981;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #059669;
    transform: scale(1.02);
}

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

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

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

.benefit-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.benefit-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1e293b;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.7;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
}

.disclaimer-card p {
    color: #78350f;
    line-height: 1.8;
}

.main-footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 60px 20px 30px;
}

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

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

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

.footer-col p {
    margin-bottom: 10px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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;
    min-width: 300px;
    margin: 0;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cookie-btn:hover {
    transform: scale(1.05);
}

.cookie-btn.accept {
    background-color: #10b981;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #059669;
}

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

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

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

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

.page-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 60px 20px;
}

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

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

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

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

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

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

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

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

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

.timeline-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.timeline-card {
    flex: 1;
    min-width: 220px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 15px;
}

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

.timeline-card p {
    color: #64748b;
    line-height: 1.6;
}

.team-approach {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.approach-card {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-card h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

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

.step-card {
    flex: 1;
    min-width: 220px;
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-number {
    font-size: 40px;
    font-weight: 700;
    color: #e0e7ff;
    margin-bottom: 15px;
}

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

.step-card p {
    color: #64748b;
    line-height: 1.7;
}

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

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 40px;
    border-radius: 16px;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

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

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

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

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

.service-detail-content {
    flex: 1;
    min-width: 350px;
}

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

.service-detail-content > p {
    color: #475569;
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.feature-item {
    padding: 10px 0;
    color: #64748b;
    font-size: 16px;
}

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

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

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

.service-benefits {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.service-benefits h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.benefits-comparison {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1e293b;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.7;
}

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

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

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

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

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

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

.contact-details p {
    color: #64748b;
    line-height: 1.7;
}

.contact-image-card {
    flex: 1;
    min-width: 350px;
    background-color: #e0e7ff;
    border-radius: 12px;
    overflow: hidden;
}

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

.contact-details-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

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

.details-card p {
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

.help-list {
    list-style: none;
    margin-top: 25px;
}

.help-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #475569;
    line-height: 1.7;
}

.help-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.map-section {
    padding: 60px 20px;
    background-color: #fff;
}

.map-placeholder {
    height: 400px;
    background-color: #e0e7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    background-color: rgba(255,255,255,0.95);
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-overlay p {
    font-size: 18px;
    color: #1e293b;
}

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

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

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

.faq-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 300px;
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.faq-card p {
    color: #64748b;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
}

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

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

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

.thanks-message {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.7;
}

.selected-service-info {
    background-color: #f0fdf4;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    color: #166534;
    font-weight: 600;
}

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

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37,99,235,0.3);
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #1e293b;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.next-steps {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.next-steps h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

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

.step-item {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

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

.step-item p {
    color: #64748b;
    line-height: 1.7;
}

.legal-page {
    padding: 60px 20px;
    background-color: #fff;
}

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

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

.update-date {
    color: #64748b;
    margin-bottom: 40px;
    font-style: italic;
}

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

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

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

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

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

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1e293b;
}

.cookies-table td {
    color: #475569;
}

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

    .hero-content {
        padding: 40px 30px;
    }

    .section-title {
        font-size: 30px;
    }

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

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

    .benefit-card,
    .value-card,
    .benefit-item,
    .faq-card {
        flex: 1 1 100%;
    }

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

    .card-image-wrapper,
    .card-text-content,
    .service-detail-image,
    .service-detail-content {
        min-width: 100%;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}