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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    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;
    margin: 0;
    min-width: 250px;
}

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 0;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.ad-label {
    background-color: #fff3cd;
    color: #856404;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

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

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

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

.hero-text-card h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.hero-image-card {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.info-cards {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

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

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

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

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

.services-highlight {
    padding: 80px 0;
    background-color: #fff;
}

.services-highlight h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    gap: 30px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    flex-wrap: wrap;
}

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

.service-image {
    flex: 1;
    min-width: 280px;
    min-height: 300px;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

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

.service-select {
    padding: 14px 28px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

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

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

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

.form-card > p {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

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

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

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

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

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

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

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

.why-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

.why-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.why-text p {
    color: #555;
    font-size: 16px;
    margin-bottom: 18px;
}

.why-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

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

.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

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

.testimonial-author {
    font-weight: 600;
    color: #3498db;
    font-size: 14px;
}

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

.cta-card-final {
    text-align: center;
    color: #fff;
}

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

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

.cta-button-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

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

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

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

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

.page-header h1 {
    font-size: 42px;
    margin-bottom: 14px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

.about-content {
    padding: 80px 0;
    background-color: #fff;
}

.about-card-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.about-main-card {
    flex: 2;
    min-width: 300px;
}

.about-main-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-main-card p {
    color: #555;
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-side-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    border-radius: 12px;
    align-self: flex-start;
}

.about-side-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 16px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.approach-cards {
    display: flex;
    gap: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 220px;
    padding: 30px 24px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.approach-number {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
}

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

.approach-card p {
    color: #555;
    font-size: 14px;
}

.stats-section {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 12px;
    text-align: center;
}

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

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

.mission-card {
    padding: 50px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

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

.mission-card p {
    color: #555;
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.services-detail {
    padding: 80px 0;
    background-color: #fff;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    flex-wrap: wrap;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

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

.service-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.service-meta span {
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

.service-detail-content p {
    color: #555;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-features li {
    padding-left: 24px;
    margin-bottom: 12px;
    color: #555;
    font-size: 15px;
    position: relative;
}

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

.service-price-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.price-label {
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
}

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

.contact-content {
    padding: 80px 0;
    background-color: #fff;
}

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

.contact-info-card,
.contact-faq-card {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

.contact-details p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.contact-note {
    padding: 20px;
    background-color: #e3f2fd;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    color: #1565c0;
    font-size: 14px;
    line-height: 1.6;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    min-height: 70vh;
}

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

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

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

.thanks-message {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.thanks-info {
    text-align: left;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    padding-left: 28px;
    margin-bottom: 12px;
    color: #555;
    font-size: 15px;
    position: relative;
    line-height: 1.6;
}

.thanks-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

.btn-primary {
    padding: 14px 32px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 14px 32px;
    background-color: #fff;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #fff;
}

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

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

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

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

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

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

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

.legal-content ul li {
    color: #555;
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

.gdpr-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.gdpr-table td {
    color: #555;
    font-size: 14px;
}

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

    .hero-content {
        gap: 40px;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

    .contact-layout {
        flex-direction: column;
    }

    .form-card {
        padding: 30px 20px;
    }

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