* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 5px 12px;
    border-radius: 4px;
}

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

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

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

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

.hero-card-inner {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-card-content {
    flex: 1;
    min-width: 300px;
    padding: 60px;
}

.hero-card-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-card-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.hero-card-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8eef3;
}

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

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52,152,219,0.3);
}

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

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

.intro-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

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

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

.intro-card p {
    color: #5a6c7d;
    font-size: 15px;
}

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

.services-section h2 {
    text-align: center;
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #5a6c7d;
    font-size: 18px;
    margin-bottom: 50px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

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

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

.service-card-body {
    padding: 30px;
}

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

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

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

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

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

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

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

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

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

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

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

.form-group label {
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

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

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    color: #34495e;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

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

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

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

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

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

.footer-col p {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.8;
}

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

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

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

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

.footer-disclaimer {
    background-color: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    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: 30px;
    flex-wrap: wrap;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-btn.reject {
    background-color: #e74c3c;
    color: #ffffff;
}

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

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

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

.page-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

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

.about-card-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-card-large {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    background-color: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
}

.about-card-large img {
    flex: 1;
    min-width: 300px;
    height: 400px;
    object-fit: cover;
}

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

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

.about-card-text p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.about-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
}

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

.about-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.values-section {
    margin-top: 60px;
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

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

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

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

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

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

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

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

.cta-card .cta-button {
    background-color: #ffffff;
    color: #667eea;
}

.cta-card .cta-button:hover {
    background-color: #f8f9fa;
}

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

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

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

.service-detail-header {
    flex: 1;
    min-width: 300px;
    background-color: #e8eef3;
}

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

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

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

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

.service-detail-body p {
    color: #5a6c7d;
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #34495e;
}

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

.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

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

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

.contact-details p {
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-image-card {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #e8eef3;
}

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

.thanks-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 30px;
}

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

.thanks-card p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    color: #2c3e50;
    font-weight: 600;
}

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

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

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

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

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

.legal-content p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

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

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

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

.gdpr-table td {
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

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

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}