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

.ad-notice {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
}

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

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

.nav-links a:hover {
    color: #1a73e8;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #1a73e8;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.85), rgba(66, 133, 244, 0.75));
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    max-width: 600px;
}

.intro-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.problem-section {
    padding: 5rem 0;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.problem-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.problem-card p {
    padding: 0 1.5rem 1.5rem;
    color: #4a5568;
}

.insight-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.insight-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.insight-section p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.approach-section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-align: center;
}

.section-title-center {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-align: center;
}

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

.approach-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1a73e8;
}

.card-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a73e8;
    margin-bottom: 1rem;
}

.approach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.approach-card p {
    color: #4a5568;
}

.testimonials-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 600;
    color: #1a73e8;
}

.services-preview-section {
    padding: 5rem 0;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.featured {
    border: 2px solid #1a73e8;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #1a73e8;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
}

.service-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 1.5rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a73e8;
    padding: 0 1.5rem;
    margin: 1.5rem 0;
}

.btn-select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #1557b0;
}

.trust-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: #1a73e8;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.trust-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.trust-text p {
    color: #4a5568;
}

.cta-form-section {
    padding: 5rem 0;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

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

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

.selected-service-display {
    background: #1a73e8;
    color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.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: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    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: #1a73e8;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1557b0;
}

.disclaimer-section {
    padding: 3rem 0;
    background: #f1f3f5;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    margin-bottom: 0.5rem;
    color: #cbd5e0;
}

.footer-links {
    list-style: none;
}

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

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

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #cbd5e0;
}

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

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

.cookie-content a {
    color: #4fc3f7;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: #1a73e8;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1557b0;
}

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

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

.page-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
    color: #ffffff;
}

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

.page-subtitle {
    font-size: 1.3rem;
}

.about-intro-section {
    padding: 5rem 0;
}

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

.about-text-block {
    flex: 1 1 400px;
}

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

.about-text-block p {
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 1.05rem;
}

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

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

.values-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

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

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

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

.approach-detail-section {
    padding: 5rem 0;
}

.approach-detail-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-detail-section p {
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 1.05rem;
}

.team-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.team-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.team-member h3 {
    font-size: 1.3rem;
    margin: 1.5rem 1rem 0.5rem;
    color: #1a1a1a;
}

.team-role {
    font-weight: 600;
    color: #1a73e8;
    margin-bottom: 1rem;
}

.team-member p {
    padding: 0 1.5rem 1.5rem;
    color: #4a5568;
}

.mission-section {
    padding: 5rem 0;
}

.mission-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.mission-section p {
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 1.05rem;
}

.cta-simple-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.cta-simple-box {
    text-align: center;
    padding: 3rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.cta-simple-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-simple-box p {
    margin-bottom: 2rem;
    color: #4a5568;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1557b0;
}

.services-detail-section {
    padding: 5rem 0;
}

.service-detail-card {
    margin-bottom: 4rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    overflow: hidden;
}

.service-detail-card.featured-service {
    border: 2px solid #1a73e8;
}

.service-detail-layout {
    display: flex;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1 1 400px;
    background-color: #e9ecef;
}

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

.service-detail-content {
    flex: 1 1 400px;
    padding: 3rem;
}

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

.service-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.service-detail-content h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: 700;
}

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

.popular-badge {
    display: inline-block;
    background: #1a73e8;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.btn-service-cta:hover {
    background: #1557b0;
}

.process-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    flex: 0 1 220px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #1a73e8;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.process-step p {
    color: #4a5568;
    font-size: 0.95rem;
}

.process-arrow {
    font-size: 2rem;
    color: #1a73e8;
    font-weight: 700;
}

.faq-section {
    padding: 5rem 0;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.services-cta-section {
    padding: 5rem 0;
}

.cta-box-services {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: #ffffff;
}

.cta-box-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-box-services p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.btn-primary-large:hover {
    transform: scale(1.05);
}

.contact-info-section {
    padding: 5rem 0;
}

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

.contact-info-block {
    flex: 1 1 400px;
}

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

.contact-info-block p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.contact-details {
    margin: 2rem 0;
}

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

.contact-detail-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a73e8;
}

.contact-detail-item p {
    color: #2c3e50;
    font-weight: 500;
}

.contact-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

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

.location-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.location-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.location-section p {
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 1.05rem;
}

.contact-reasons-section {
    padding: 5rem 0;
}

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

.reason-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.reason-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

.reason-card p {
    color: #4a5568;
}

.contact-cta-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.cta-contact-box {
    text-align: center;
    padding: 3rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

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

.thanks-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

.thanks-subtitle {
    font-size: 1.2rem;
}

.thanks-info-section {
    padding: 5rem 0;
}

.thanks-info-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.next-step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #1a73e8;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    color: #4a5568;
}

.thanks-resources-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: #4a5568;
}

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

.resource-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.resource-card p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.resource-link {
    color: #1a73e8;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.resource-link:hover {
    color: #1557b0;
}

.thanks-contact-section {
    padding: 5rem 0;
}

.contact-reminder {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.contact-reminder h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-reminder p {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.contact-email-display {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a73e8;
}

.legal-page {
    padding: 5rem 0;
}

.legal-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

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

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

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

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

.legal-page a {
    color: #1a73e8;
    text-decoration: underline;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    color: #6c757d;
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .problem-card,
    .service-card,
    .testimonial-card,
    .team-member,
    .resource-card {
        flex: 1 1 100%;
    }

    .approach-card,
    .value-card,
    .reason-card {
        flex: 1 1 100%;
    }

    .service-detail-layout,
    .about-content-grid,
    .contact-layout {
        flex-direction: column;
    }

    .process-arrow {
        display: none;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}
