* {
    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: #2d3748;
    background-color: #ffffff;
}

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

.navbar {
    background-color: #ffffff;
    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;
    min-height: 70px;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b6cb0;
    text-decoration: none;
}

.ad-disclosure {
    background-color: #fed7d7;
    color: #742a2a;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

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

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

.nav-menu li a:hover {
    color: #2b6cb0;
}

.nav-menu li a.active {
    color: #2b6cb0;
}

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

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

.hero-text-card {
    flex: 1 1 450px;
    color: #ffffff;
}

.hero-text-card h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.cta-primary {
    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;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.hero-image-card {
    flex: 1 1 450px;
    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;
}

.intro-cards {
    padding: 80px 20px;
    background-color: #f7fafc;
}

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

.info-card {
    flex: 1 1 300px;
    max-width: 360px;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.info-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 15px;
}

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

.services-showcase {
    padding: 80px 20px;
    background-color: #ffffff;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    flex: 1 1 340px;
    max-width: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.service-content p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-features li {
    padding: 8px 0;
    color: #4a5568;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background-color: #4299e1;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.form-section {
    padding: 80px 20px;
    background-color: #edf2f7;
}

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

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

.form-card > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 40px;
}

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

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px;
    background-color: #48bb78;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.value-cards {
    padding: 80px 20px;
    background-color: #ffffff;
}

.value-cards h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 50px;
}

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

.value-card {
    flex: 1 1 280px;
    max-width: 350px;
    background-color: #f7fafc;
    padding: 35px 28px;
    border-radius: 10px;
    border-left: 4px solid #4299e1;
}

.value-card h4 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 12px;
}

.value-card p {
    color: #4a5568;
    line-height: 1.7;
}

.footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 60px 20px 30px;
}

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

.footer-column {
    flex: 1 1 200px;
}

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

.footer-column p {
    color: #cbd5e0;
    line-height: 1.7;
}

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

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

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 0.9rem;
    color: #a0aec0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 15px 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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    color: #e2e8f0;
}

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

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

.btn-cookie:hover {
    transform: translateY(-2px);
}

.btn-cookie.accept {
    background-color: #48bb78;
    color: #ffffff;
}

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

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

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

.page-hero {
    background: linear-gradient(135deg, #4299e1 0%, #2b6cb0 100%);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.services-detail {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.process-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 60px;
}

.process-cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-card {
    flex: 1 1 200px;
    max-width: 220px;
    background-color: #f7fafc;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4299e1;
    margin-bottom: 15px;
}

.process-card h4 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 10px;
}

.process-card p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 20px;
    background-color: #edf2f7;
}

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

.cta-card h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

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

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

.about-intro {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.about-text {
    flex: 1 1 450px;
}

.about-text h2 {
    font-size: 2.3rem;
    color: #2d3748;
    margin-bottom: 25px;
}

.about-text p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-image {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.values-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

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

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

.value-card-detailed {
    flex: 1 1 260px;
    max-width: 280px;
    background-color: #ffffff;
    padding: 35px 28px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card-detailed h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.value-card-detailed p {
    color: #4a5568;
    line-height: 1.7;
}

.expertise-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.expertise-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 50px;
}

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

.expertise-card {
    flex: 1 1 260px;
    max-width: 280px;
    background-color: #f7fafc;
    padding: 30px 25px;
    border-radius: 10px;
    border-top: 4px solid #4299e1;
}

.expertise-card h4 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 12px;
}

.expertise-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
}

.approach-section {
    padding: 80px 20px;
    background-color: #edf2f7;
}

.approach-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.approach-image {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
}

.approach-text {
    flex: 1 1 450px;
}

.approach-text h2 {
    font-size: 2.3rem;
    color: #2d3748;
    margin-bottom: 25px;
}

.approach-text p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.stats-section {
    padding: 80px 20px;
    background-color: #2d3748;
}

.stats-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #4299e1;
    margin-bottom: 10px;
}

.stat-label {
    color: #e2e8f0;
    font-size: 1.1rem;
}

.contact-content {
    padding: 80px 20px;
    background-color: #f7fafc;
}

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

.contact-info-cards {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 12px;
}

.contact-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 8px;
}

.email-note,
.hours-note {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

.contact-image-section {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-details {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.detail-card {
    flex: 1 1 260px;
    max-width: 280px;
    background-color: #f7fafc;
    padding: 30px 25px;
    border-radius: 10px;
}

.detail-card h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.detail-card p {
    color: #4a5568;
    line-height: 1.7;
}

.location-section {
    padding: 60px 20px;
    background-color: #f7fafc;
}

.location-section h2 {
    text-align: center;
    font-size: 2.3rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.location-section > p {
    text-align: center;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.location-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.location-card {
    flex: 1 1 400px;
    max-width: 500px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.location-card h4 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.location-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 8px;
}

.thanks-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

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

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

.thanks-card h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-info {
    background-color: #edf2f7;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: none;
}

.service-info.show {
    display: block;
}

.service-info p {
    color: #2d3748;
    font-size: 1.05rem;
}

.next-steps {
    margin-top: 50px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 30px;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    flex: 1 1 220px;
    max-width: 250px;
    background-color: #f7fafc;
    padding: 25px 20px;
    border-radius: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #4299e1;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.step-item p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-primary {
    display: inline-block;
    background-color: #4299e1;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #718096;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: #4a5568;
    transform: translateY(-2px);
}

.additional-info {
    max-width: 900px;
    margin: 60px auto 0;
}

.additional-info h3 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 30px;
    text-align: center;
}

.faq-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1 1 400px;
    background-color: #f7fafc;
    padding: 25px;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 10px;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

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

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

.legal-content h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 30px;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

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

.last-updated {
    font-style: italic;
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

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

    .section-heading {
        font-size: 2rem;
    }

    .nav-menu {
        gap: 15px;
        font-size: 0.9rem;
    }

    .form-card {
        padding: 35px 25px;
    }

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

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