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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2980b9;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --background-light: #ecf0f1;
    --background-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
}

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

.main-nav {
    background-color: var(--background-white);
    box-shadow: var(--shadow);
    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: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.hero-card {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--background-white);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.cta-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.intro-section {
    padding: 60px 20px;
    background-color: var(--background-white);
}

.intro-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--background-light);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-card p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.problem-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.insight-section {
    padding: 80px 20px;
    background-color: var(--background-white);
}

.insight-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.insight-text p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.insight-image {
    flex: 1;
}

.insight-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.cta-inline {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.3s;
}

.cta-inline:hover {
    color: var(--accent-color);
}

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

.testimonial-card {
    background-color: var(--background-white);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
}

.services-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.services-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--background-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-header {
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-description {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-light);
}

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

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

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.btn-select-service {
    width: 100%;
    padding: 12px;
    background-color: var(--secondary-color);
    color: var(--background-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.urgency-section {
    padding: 60px 20px;
    background-color: var(--background-white);
}

.urgency-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 12px;
    color: var(--background-white);
    box-shadow: var(--shadow-lg);
}

.urgency-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.urgency-card p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-urgency {
    display: inline-block;
    background-color: var(--background-white);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-urgency:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.form-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--background-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 35px;
    color: var(--text-light);
}

.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: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    padding: 15px;
    background-color: var(--accent-color);
    color: var(--background-white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.final-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
    text-align: center;
    color: var(--background-white);
}

.final-cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 20px;
    margin-bottom: 35px;
}

.cta-final {
    display: inline-block;
    background-color: var(--background-white);
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-final:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: var(--background-white);
}

.footer-section p {
    color: var(--border-color);
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: var(--border-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--background-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--border-color);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
}

.sticky-cta-btn {
    display: block;
    background-color: var(--accent-color);
    color: var(--background-white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background-color: #d35400;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 200;
    display: none;
}

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

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

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

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie:not(.secondary) {
    background-color: var(--accent-color);
    color: var(--background-white);
}

.btn-cookie:not(.secondary):hover {
    background-color: #d35400;
}

.btn-cookie.secondary {
    background-color: transparent;
    color: var(--background-white);
    border: 2px solid var(--background-white);
}

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

.page-header {
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--background-white);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
}

.about-intro,
.about-story,
.values-section,
.approach-section,
.services-intro,
.services-detailed,
.comparison-section,
.contact-section,
.location-section {
    padding: 80px 20px;
}

.about-intro {
    background-color: var(--background-white);
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-content p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-story {
    background-color: var(--background-light);
}

.story-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.story-text p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.values-section {
    background-color: var(--background-white);
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--background-light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    line-height: 1.7;
    color: var(--text-light);
}

.approach-section {
    background-color: var(--background-light);
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.approach-content p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.step-card {
    flex: 1 1 calc(25% - 20px);
    min-width: 200px;
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.cta-about,
.cta-services,
.cta-contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
    color: var(--background-white);
}

.cta-about h2,
.cta-services h2,
.cta-contact h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-about p,
.cta-services p,
.cta-contact p {
    font-size: 18px;
    margin-bottom: 30px;
}

.services-intro {
    background-color: var(--background-white);
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.services-detailed {
    background-color: var(--background-light);
}

.service-detail-card {
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid var(--accent-color);
}

.service-detail-card.premium-service {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--background-white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-detail-header h2 {
    font-size: 32px;
    color: var(--primary-color);
}

.price-tag {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-detail-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.service-detail-content h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.btn-service {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--background-white);
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-service:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.comparison-section {
    background-color: var(--background-white);
}

.comparison-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.comparison-guide {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-item {
    background-color: var(--background-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.guide-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.guide-item p {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-section {
    background-color: var(--background-light);
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info > p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    background-color: var(--background-white);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.contact-note p {
    margin: 0;
    color: var(--text-dark);
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.location-section {
    background-color: var(--background-white);
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.location-section > p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.location-info {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
}

.location-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.location-info p:last-child {
    margin-bottom: 0;
}

.thanks-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.thanks-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--background-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.service-confirmation {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

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

.step-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    background-color: var(--background-light);
    padding: 25px;
    border-radius: 8px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.thanks-cta {
    margin-top: 40px;
}

.thanks-cta p {
    margin-bottom: 25px;
    font-size: 16px;
    color: var(--text-light);
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--background-white);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--background-white);
}

.additional-info {
    padding: 80px 20px;
    background-color: var(--background-white);
}

.additional-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--background-light);
    padding: 25px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-content {
    padding: 60px 20px;
    background-color: var(--background-white);
}

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

.legal-text h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.legal-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-light);
}

.legal-text ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.legal-text ul li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.legal-text a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-card {
        flex-direction: column;
        padding: 50px 20px;
    }

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

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

    .insight-wrapper,
    .story-wrapper,
    .contact-wrapper {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .service-card {
        min-width: 100%;
    }

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

    .thanks-buttons {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
