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

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

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

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

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

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

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

.nav-links a:hover {
    color: #2c3e50;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
    background-color: #f5f7fa;
}

.hero-content {
    flex: 1;
    min-width: 350px;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
}

.hero p {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    min-width: 350px;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #2c3e50;
    transition: all 0.3s;
    text-align: center;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-content {
    padding: 32px 28px;
}

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 24px 0;
}

.select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: #34495e;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
}

.select-service:hover {
    background-color: #2c3e50;
}

.select-service.selected {
    background-color: #27ae60;
}

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

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

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.form-header p {
    color: #666;
    font-size: 16px;
}

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

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

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

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    background-color: #ffffff;
}

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

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

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

.trust-section {
    background-color: #f5f7fa;
    padding: 80px 0;
}

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

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

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

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

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

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

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

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

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

.footer-column p {
    color: #b8c5d6;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #b8c5d6;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 24px;
    border-top: 1px solid #3a4a5a;
    border-bottom: 1px solid #3a4a5a;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #9aa5b1;
    line-height: 1.6;
    text-align: justify;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px 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;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

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

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

.cookie-btn {
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
    font-size: 15px;
}

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

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

.cookie-btn:hover {
    opacity: 0.9;
}

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-overlay h1 {
    color: #ffffff;
    font-size: 48px;
    text-align: center;
    padding: 0 24px;
}

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

.content-card {
    background-color: #f8f9fa;
    padding: 48px 40px;
    border-radius: 12px;
    margin-bottom: 48px;
}

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

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

.story-section {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 60px;
}

.story-card {
    flex: 1;
    min-width: 280px;
    padding: 32px 28px;
    border-radius: 12px;
}

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

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

.approach-section {
    margin-bottom: 60px;
}

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

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

.approach-item {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    padding: 32px 28px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

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

.approach-item p {
    color: #555;
    line-height: 1.7;
}

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-item {
    background-color: #f8f9fa;
    padding: 32px 36px;
    border-radius: 12px;
}

.value-item h4 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

.services-header {
    background-color: #f5f7fa;
    padding: 60px 0;
    text-align: center;
}

.services-header h1 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.services-header p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-detailed {
    background-color: #ffffff;
    padding: 60px 0;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    min-width: 320px;
    border-radius: 16px;
    overflow: hidden;
}

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

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

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

.service-detail-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 17px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.feature-item {
    padding: 12px 16px;
    background-color: #f8f9fa;
    border-left: 4px solid #2c3e50;
    border-radius: 4px;
    color: #555;
}

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

.price-label {
    font-size: 16px;
    color: #666;
}

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

.service-cta {
    display: inline-block;
    padding: 14px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #1a252f;
}

.services-cta {
    background-color: #f5f7fa;
    padding: 80px 0;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 36px 32px;
    border-radius: 12px;
}

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

.contact-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-item p {
    margin: 0;
}

.contact-note {
    background-color: #e8f4f8;
    padding: 40px 36px;
    border-radius: 12px;
    border-left: 6px solid #2c3e50;
}

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

.contact-note p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.thanks-page {
    background-color: #ffffff;
    min-height: 60vh;
}

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

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

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

.thanks-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.thanks-info p {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
}

.thanks-next {
    text-align: left;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
}

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

.thanks-next ul {
    list-style-position: inside;
    color: #555;
    line-height: 2;
}

.thanks-next ul li {
    margin-bottom: 8px;
}

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

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

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

.legal-update {
    color: #666;
    font-size: 14px;
    margin-bottom: 40px;
}

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

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

.legal-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 10px;
}

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

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

.legal-content ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

    .hero p {
        font-size: 18px;
    }

    .nav-links {
        flex-direction: column;
        gap: 16px;
    }

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

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

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

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