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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2d3436;
    background-color: #f8f9fa;
}

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

.ad-disclosure {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    border-bottom: 1px solid #ddd;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 8px 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: #0066cc;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-menu a:hover {
    color: #0066cc;
}

.hero-card {
    margin-bottom: 40px;
}

.hero-image {
    height: 560px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,102,204,0.85) 0%, rgba(44,62,80,0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 40px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

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

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

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

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

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

.info-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px 32px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0066cc;
}

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

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

.section-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.card-content-split {
    display: flex;
    gap: 48px;
    padding: 48px;
    align-items: center;
}

.content-left {
    flex: 1;
}

.content-right {
    flex: 1;
}

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

.card-content-split h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3436;
}

.card-content-split p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: #636e72;
}

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

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 48px;
    color: #2d3436;
}

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

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 360px;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-body h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d3436;
}

.service-body p {
    font-size: 15px;
    color: #636e72;
    margin-bottom: 16px;
    flex: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 16px;
    padding: 0;
}

.service-features li {
    font-size: 14px;
    color: #636e72;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

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

.service-duration {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 16px;
}

.select-service-btn {
    background-color: #0066cc;
    color: #fff;
    border: none;
    padding: 14px 24px;
    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: #0052a3;
    transform: scale(1.02);
}

.testimonial-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.testimonial-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: #2d3436;
    margin-bottom: 12px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    color: #888;
    text-align: right;
}

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

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

.form-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2d3436;
}

.form-card p {
    margin-bottom: 32px;
    color: #636e72;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background-color: #fff;
    transition: border-color 0.3s;
}

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

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

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

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

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

.disclaimer-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.footer {
    background-color: #2d3436;
    color: #dfe6e9;
    padding: 48px 0 24px;
}

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

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

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

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #636e72;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    color: #fff;
    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: 24px;
}

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

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

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

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

.cookie-btn.accept:hover {
    background-color: #229954;
    transform: scale(1.05);
}

.cookie-btn.reject {
    background-color: #636e72;
    color: #fff;
}

.cookie-btn.reject:hover {
    background-color: #4a5158;
    transform: scale(1.05);
}

.page-hero {
    background: linear-gradient(135deg, #0066cc 0%, #2d3436 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

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

.content-card {
    margin-bottom: 60px;
}

.process-cards {
    padding: 60px 0;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.process-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.process-number {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-align: center;
    line-height: 48px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.process-card p {
    font-size: 15px;
    color: #636e72;
    line-height: 1.6;
}

.philosophy-section {
    padding: 60px 0;
}

.philosophy-card {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 48px;
    border-radius: 16px;
    border-left: 6px solid #0066cc;
}

.philosophy-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3436;
}

.philosophy-card p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #636e72;
    line-height: 1.7;
}

.services-detail-section {
    padding: 60px 0;
}

.comparison-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.comparison-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.comparison-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.comparison-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0066cc;
}

.comparison-card p {
    font-size: 15px;
    color: #636e72;
    line-height: 1.6;
}

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

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

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

.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2d3436;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

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

.contact-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #0066cc;
}

.contact-text p {
    font-size: 15px;
    color: #636e72;
}

.contact-additional {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
}

.contact-additional h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2d3436;
}

.contact-additional p {
    font-size: 15px;
    margin-bottom: 16px;
    color: #636e72;
    line-height: 1.7;
}

.location-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.location-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2d3436;
}

.location-card p {
    font-size: 15px;
    color: #636e72;
    line-height: 1.7;
}

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

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

.thanks-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 80px;
    font-size: 48px;
    margin-bottom: 24px;
}

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

.thanks-message {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 24px;
}

.thanks-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 15px;
    color: #2d3436;
}

.thanks-card p {
    font-size: 15px;
    color: #636e72;
    margin-bottom: 16px;
    line-height: 1.7;
}

.back-btn {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.back-btn:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

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

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 8px;
    color: #2d3436;
}

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

.legal-section {
    margin-bottom: 32px;
}

.legal-section h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #0066cc;
}

.legal-section h3 {
    font-size: 20px;
    margin-bottom: 8px;
    margin-top: 16px;
    color: #2d3436;
}

.legal-section p {
    font-size: 15px;
    color: #636e72;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.legal-section ul li {
    font-size: 15px;
    color: #636e72;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-section a {
    color: #0066cc;
    text-decoration: none;
}

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

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

    .hero-content p {
        font-size: 16px;
    }

    .card-content-split {
        flex-direction: column;
    }

    .nav-menu {
        gap: 16px;
        font-size: 14px;
    }

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

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