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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.cookie-btn.reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b6cb0;
}

.ad-notice {
    background: #fef5e7;
    color: #744210;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #f6e05e;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

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

.hero-section {
    display: flex;
    align-items: center;
    min-height: 600px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: #2b6cb0;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(43, 108, 176, 0.2);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    background-color: #edf2f7;
    border-radius: 12px;
    overflow: hidden;
}

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

.info-cards {
    background: #f7fafc;
    padding: 5rem 2rem;
}

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

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.card-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

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

.process-section {
    padding: 5rem 2rem;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: #718096;
}

.process-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 220px;
    padding: 2rem;
    background: #edf2f7;
    border-radius: 8px;
    border-left: 4px solid #2b6cb0;
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 1rem;
}

.process-card h4 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

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

.services-preview {
    padding: 5rem 2rem;
    background: #f7fafc;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #718096;
    margin-bottom: 3rem;
}

.service-selection-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-option {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.service-option:hover {
    border-color: #2b6cb0;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-option.featured {
    border-color: #2b6cb0;
    box-shadow: 0 10px 20px rgba(43, 108, 176, 0.2);
}

.ribbon {
    position: absolute;
    top: 1rem;
    right: -0.5rem;
    background: #f6ad55;
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2b6cb0;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.service-features li:before {
    content: "✓ ";
    color: #48bb78;
    font-weight: 700;
    margin-right: 0.5rem;
}

.select-service-btn {
    width: 100%;
    padding: 0.9rem;
    background: #2b6cb0;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 5rem 2rem;
    background: white;
}

.form-wrapper {
    background: #f7fafc;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-wrapper h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.form-intro {
    color: #718096;
    margin-bottom: 2rem;
}

.selected-service-display {
    background: #ebf8ff;
    border: 2px solid #2b6cb0;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.selected-service-display p {
    margin: 0;
    color: #2c5282;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

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

.submit-btn {
    padding: 1rem;
    background: #48bb78;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 5rem 2rem;
    background: #edf2f7;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #2d3748;
}

.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5282 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button-secondary {
    display: inline-block;
    background: white;
    color: #2b6cb0;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: #f7fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.page-hero {
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5282 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-content {
    padding: 5rem 2rem;
    background: white;
}

.about-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.about-text h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
    background-color: #edf2f7;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    padding: 5rem 2rem;
    background: #f7fafc;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2b6cb0;
    margin-bottom: 1rem;
}

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

.team-section {
    padding: 5rem 2rem;
    background: white;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 3rem;
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.approach-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.approach-item.reverse {
    flex-direction: row-reverse;
}

.approach-image {
    flex: 1;
    min-width: 300px;
    background-color: #edf2f7;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-text {
    flex: 1;
    min-width: 300px;
}

.approach-text h3 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.approach-text p {
    color: #4a5568;
    line-height: 1.8;
}

.stats-section {
    padding: 5rem 2rem;
    background: #2b6cb0;
    color: white;
}

.stats-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-section {
    padding: 5rem 2rem;
    background: #edf2f7;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.services-detail {
    padding: 5rem 2rem;
    background: white;
}

.service-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #edf2f7;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.5rem;
    color: #2b6cb0;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features-list li {
    padding: 0.5rem 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.service-features-list li:before {
    content: "✓ ";
    color: #48bb78;
    font-weight: 700;
    margin-right: 0.5rem;
}

.service-cta {
    display: inline-block;
    background: #2b6cb0;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #2c5282;
    transform: translateY(-2px);
}

.additional-services {
    padding: 5rem 2rem;
    background: #f7fafc;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 3rem;
}

.additional-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.additional-card {
    flex: 1;
    min-width: 240px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.additional-card h3 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.additional-card p {
    color: #4a5568;
    line-height: 1.6;
}

.contact-page {
    padding: 5rem 2rem;
    background: white;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.contact-info h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.25rem;
    color: #2b6cb0;
    margin-bottom: 0.5rem;
}

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

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
    background-color: #edf2f7;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

.contact-cta {
    padding: 5rem 2rem;
    background: #f7fafc;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 5rem 2rem;
    background: white;
    min-height: 500px;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

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

.selected-service-confirm {
    background: #ebf8ff;
    border: 2px solid #2b6cb0;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.selected-service-confirm p {
    margin: 0;
    color: #2c5282;
}

.thanks-next-steps {
    text-align: left;
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

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

.thanks-next-steps li {
    padding: 0.5rem 0;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-next-steps li:before {
    content: "→ ";
    color: #2b6cb0;
    font-weight: 700;
    margin-right: 0.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 5rem 2rem;
    background: white;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.legal-update {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-page li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #2b6cb0;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2c5282;
}

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

    .page-hero h1 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

    .card-grid,
    .process-cards,
    .testimonial-grid {
        flex-direction: column;
    }

    .service-selection-grid {
        flex-direction: column;
        align-items: center;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    .about-layout,
    .approach-item,
    .service-detail-card,
    .contact-layout {
        flex-direction: column;
    }

    .approach-item.reverse {
        flex-direction: column;
    }

    .values-grid,
    .additional-grid {
        flex-direction: column;
    }
}