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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-orange: #f59e0b;
    --success-green: #059669;
}

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

.ad-disclosure {
    background: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #fbbf24;
}

.navigation {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 80px;
    align-items: center;
}

.hero-content {
    flex: 1;
    max-width: 580px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    max-width: 650px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.2s, transform 0.2s;
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.intro-asymmetric {
    background: var(--bg-light);
    padding: 100px 40px;
}

.intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.2;
}

.intro-text p {
    font-size: 19px;
    color: var(--text-medium);
    line-height: 1.8;
}

.intro-visual {
    flex: 0.8;
}

.intro-visual img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    object-fit: cover;
}

.value-cards {
    padding: 110px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-left {
    max-width: 700px;
    margin-bottom: 60px;
}

.section-header-left h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-header-left p {
    font-size: 19px;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
    transition: box-shadow 0.3s, transform 0.2s;
}

.service-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--bg-light);
}

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

.service-card h3 {
    font-size: 24px;
    margin: 26px 30px 14px;
    color: var(--text-dark);
}

.service-card p {
    margin: 0 30px 20px;
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 30px;
}

.select-service {
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 14px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.select-service:hover {
    background: var(--primary-dark);
}

.process-alternate {
    background: var(--bg-light);
    padding: 100px 40px;
}

.process-item {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

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

.process-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
    min-width: 100px;
}

.process-content h3 {
    font-size: 30px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-content p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
}

.testimonials-inline {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-inline h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonial-blocks {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial {
    background: var(--bg-light);
    padding: 35px 40px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

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

.testimonial-author {
    font-size: 16px;
    color: var(--text-medium);
    font-weight: 600;
    font-style: normal;
}

.cta-section-offset {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-secondary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.2s;
}

.cta-secondary:hover {
    transform: scale(1.05);
}

.form-section {
    padding: 100px 40px;
    background: var(--bg-white);
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-info p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 30px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefit-item {
    padding-left: 28px;
    position: relative;
    color: var(--text-dark);
    font-size: 16px;
}

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

.form-wrapper {
    flex: 1;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    background: var(--bg-white);
    transition: border 0.2s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.disclaimer-section {
    background: #fef3c7;
    padding: 50px 40px;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.disclaimer-content p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: white;
}

.footer-column p,
.footer-column a {
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 2000;
    padding: 24px 40px;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: var(--text-medium);
}

.cookie-content a {
    color: var(--primary-color);
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

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

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-reject {
    background: var(--bg-light);
    color: var(--text-dark);
}

.cookie-reject:hover {
    background: var(--border-color);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 100px 40px;
    text-align: center;
    color: white;
}

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

.page-hero-content p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.story-text {
    flex: 1.3;
}

.story-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.story-image {
    flex: 0.7;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    object-fit: cover;
}

.values-section {
    background: var(--bg-light);
    padding: 100px 40px;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 10px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.value-item p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

.team-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.team-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-intro p {
    font-size: 19px;
    color: var(--text-medium);
}

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

.team-member {
    flex: 1;
    max-width: 320px;
    text-align: center;
}

.member-image {
    width: 100%;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--bg-light);
}

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

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

.team-member p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.approach-section {
    background: var(--bg-light);
    padding: 100px 40px;
}

.approach-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.approach-content p {
    font-size: 19px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

.cta-about {
    padding: 100px 40px;
}

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

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

.cta-about-content p {
    font-size: 19px;
    color: var(--text-medium);
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.2s;
}

.cta-button:hover {
    background: var(--primary-dark);
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.service-detail {
    display: flex;
    gap: 70px;
    align-items: center;
    margin-bottom: 100px;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

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

.service-detail-content ul {
    margin: 20px 0 24px 24px;
}

.service-detail-content li {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 12px;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}

.services-faq {
    background: var(--bg-light);
    padding: 80px 40px;
}

.services-faq h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

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

.services-cta {
    padding: 80px 40px;
}

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

.services-cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-cta-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-block p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}

.contact-approach {
    background: var(--bg-light);
    padding: 100px 40px;
}

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

.approach-wrapper h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.approach-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-faq {
    padding: 100px 40px;
}

.contact-faq h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.thanks-hero {
    padding: 100px 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 35px;
}

.thanks-details {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 50px;
    font-size: 17px;
    color: var(--text-dark);
}

.thanks-next {
    margin-bottom: 50px;
}

.thanks-next h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.next-steps {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.next-step {
    flex: 1;
    max-width: 220px;
    text-align: center;
}

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

.next-step p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

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

.thanks-resources {
    background: var(--bg-light);
    padding: 80px 40px;
}

.thanks-resources h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.resources-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.resource-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
}

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

.resource-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.legal-page {
    padding: 80px 40px;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-container ul {
    margin: 20px 0 20px 30px;
}

.legal-container li {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 10px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    font-size: 16px;
    color: var(--text-medium);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-wrapper,
    .story-wrapper,
    .form-container-split,
    .contact-split,
    .service-detail {
        flex-direction: column;
    }

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

    .team-grid {
        flex-wrap: wrap;
    }

    .next-steps {
        flex-direction: column;
        align-items: center;
    }

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

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

    .nav-container {
        padding: 0 20px;
    }

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

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