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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

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

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

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

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

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

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

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

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

.hero-text {
    flex: 1;
}

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

.hero-text p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

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

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

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

.features-cards {
    background-color: #ffffff;
}

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

.cards-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.card-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #334155;
}

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

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

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

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    margin-bottom: 48px;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.service-icon {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.service-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

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

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

.select-service {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

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

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

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1e293b;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: #64748b;
    margin-bottom: 32px;
}

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

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

.form-group label {
    font-weight: 600;
    color: #334155;
}

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

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

.submit-button {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.disclaimer-section {
    background-color: #fef3c7;
    padding: 40px 0;
}

.disclaimer {
    text-align: center;
    color: #92400e;
    font-size: 14px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 60px 0 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

.footer-section p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.footer-section a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 24px 24px 0;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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: 32px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

.cookie-content a {
    color: #93c5fd;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-accept {
    background-color: #2563eb;
    color: white;
}

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

.cookie-reject {
    background-color: #475569;
    color: white;
}

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

.about-hero,
.services-hero,
.contact-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    padding: 80px 24px 60px;
    color: white;
    text-align: center;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    background-color: #ffffff;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.values-section {
    background-color: #f8fafc;
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.team-section {
    background-color: #ffffff;
}

.team-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.team-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
}

.services-list {
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

.service-detail-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 8px 0 8px 28px;
    color: #475569;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

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

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

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

.service-info {
    background-color: #f1f5f9;
}

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

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.info-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.info-item p {
    color: #64748b;
    line-height: 1.6;
}

.contact-content {
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-card {
    background-color: #f8fafc;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

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

.contact-card p {
    color: #64748b;
    line-height: 1.8;
}

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

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

.map-section {
    background-color: #f8fafc;
}

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

.map-section p {
    color: #64748b;
    line-height: 1.7;
}

.thanks-section {
    background-color: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 20px;
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 32px;
}

.thanks-details {
    background-color: #f8fafc;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.thanks-details p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 12px;
}

.thanks-next {
    text-align: left;
    margin-bottom: 32px;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1e293b;
}

.thanks-next ul {
    list-style: none;
    padding: 0;
}

.thanks-next li {
    padding: 10px 0 10px 28px;
    color: #475569;
    position: relative;
}

.thanks-next li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

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

.secondary-button {
    display: inline-block;
    background-color: #e2e8f0;
    color: #334155;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.secondary-button:hover {
    background-color: #cbd5e1;
}

.legal-content {
    background-color: #ffffff;
}

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

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #334155;
}

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

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

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

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

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

@media (max-width: 768px) {
    .hero-content,
    .about-grid,
    .contact-grid,
    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .hero-text h1,
    .about-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 36px;
    }

    .nav-links {
        gap: 16px;
    }

    .cards-grid,
    .services-grid {
        flex-direction: column;
    }

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