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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --dark: #1e293b;
    --gray: #64748b;
    --light-gray: #f1f5f9;
    --white: #ffffff;
    --accent: #0ea5e9;
    --success: #10b981;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px var(--shadow);
}

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

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

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

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav a {
    color: var(--dark);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
}

.hero-card {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

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

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

.hero-text p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-primary-large {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

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

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

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

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

.btn-primary-large {
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 40px;
    font-size: 18px;
}

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

.stats-cards {
    padding: 60px 0;
    background: var(--white);
}

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

.stat-card {
    flex: 1 1 280px;
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.intro-section {
    padding: 80px 0;
    background: var(--white);
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.large-text {
    font-size: 22px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 18px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 15px;
}

.problem-cards {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: left;
}

.section-title-center {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 50px;
}

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

.problem-card {
    flex: 1 1 calc(50% - 15px);
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

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

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

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

.problem-card p {
    color: var(--gray);
    font-size: 16px;
}

.cta-inline {
    padding: 60px 0;
    background: var(--primary-color);
}

.cta-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-text {
    flex: 1 1 300px;
    font-size: 24px;
    color: var(--white);
    margin: 0;
}

.services-preview {
    padding: 80px 0;
    background: var(--white);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--shadow);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-content p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 15px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.link-arrow:hover {
    color: var(--secondary-color);
}

.center-cta {
    text-align: center;
}

.approach-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.approach-image {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-point {
    display: flex;
    gap: 20px;
}

.point-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.point-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.point-text p {
    color: var(--gray);
    font-size: 16px;
}

.testimonials-cards {
    padding: 80px 0;
    background: var(--white);
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--light-gray);
    padding: 35px;
    border-radius: 12px;
    position: relative;
}

.quote-mark {
    font-size: 60px;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 15px;
    opacity: 0.3;
}

.testimonial-card p {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--dark);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 14px;
}

.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.form-card {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.final-cta {
    padding: 80px 0;
    background: var(--dark);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer {
    background: var(--dark);
    color: var(--light-gray);
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: var(--light-gray);
    font-size: 14px;
}

.footer-col ul a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 16px 28px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.about-intro {
    padding: 80px 0;
}

.about-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

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

.values-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--gray);
    font-size: 16px;
}

.story-section {
    padding: 80px 0;
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.story-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.team-card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card h3 {
    font-size: 22px;
    margin: 20px 0 5px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--gray);
    padding: 0 20px;
    font-size: 15px;
}

.numbers-section {
    padding: 80px 0;
    background: var(--white);
}

.numbers-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.number-item {
    flex: 1 1 200px;
    text-align: center;
}

.big-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.number-item p {
    color: var(--gray);
    font-size: 16px;
}

.cta-section-about {
    padding: 80px 0;
    background: var(--light-gray);
}

.cta-box-large {
    background: var(--primary-color);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
}

.cta-box-large h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-box-large p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0.9;
}

.services-intro {
    padding: 40px 0;
    text-align: center;
}

.services-detailed {
    padding: 60px 0 80px;
}

.service-detail-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px var(--shadow);
}

.service-detail-header {
    margin-bottom: 30px;
}

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

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

.price-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 700;
}

.service-detail-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-detail-image {
    flex: 1 1 350px;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1 1 450px;
}

.service-lead {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

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

.service-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--gray);
    font-size: 16px;
}

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

.pricing-note {
    padding: 40px 0;
}

.note-box {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.note-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.note-box p {
    color: var(--gray);
    font-size: 16px;
    margin: 0;
}

.process-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.process-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-card {
    flex: 1 1 calc(25% - 23px);
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
}

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

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

.process-card p {
    color: var(--gray);
    font-size: 15px;
}

.faq-section {
    padding: 80px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.faq-item p {
    color: var(--gray);
    font-size: 16px;
    margin: 0;
}

.cta-section-services {
    padding: 80px 0;
    background: var(--dark);
    text-align: center;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

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

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 30px;
}

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

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

.contact-item a {
    color: var(--primary-color);
}

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

.contact-note {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    margin: 0;
    font-size: 15px;
    color: var(--dark);
}

.contact-map {
    flex: 1 1 450px;
    border-radius: 12px;
    overflow: hidden;
}

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

.why-contact {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.why-card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
}

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

.why-card p {
    color: var(--gray);
    font-size: 16px;
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-box {
    background: var(--white);
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow);
}

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

.thanks-box h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 30px;
}

.thanks-details {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 10px;
}

.thanks-next {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.thanks-next ul {
    list-style: disc;
    padding-left: 30px;
}

.thanks-next ul li {
    color: var(--gray);
    margin-bottom: 8px;
    font-size: 16px;
}

.thanks-next a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.thanks-testimonial {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonial-single {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
}

.legal-page {
    padding: 80px 0;
}

.legal-intro {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 40px;
}

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark);
}

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

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

.legal-section ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 15px;
}

.legal-section ul li {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px var(--shadow);
    }

    .nav.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-content {
        flex-direction: column-reverse;
    }

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

    .service-card,
    .testimonial-card,
    .team-card,
    .why-card {
        flex: 1 1 100%;
    }

    .process-card {
        flex: 1 1 calc(50% - 15px);
    }

    .approach-flex,
    .about-flex {
        flex-direction: column;
    }

    .service-detail-flex {
        flex-direction: column;
    }

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

    .thanks-box {
        padding: 40px 20px;
    }

    .thanks-box h1 {
        font-size: 32px;
    }

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

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

    .page-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .section-title,
    .section-title-center {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .service-detail-title h2 {
        font-size: 24px;
    }

    .process-card {
        flex: 1 1 100%;
    }

    .form-card {
        padding: 30px 20px;
    }

    .cta-box-large {
        padding: 40px 20px;
    }
}
