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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2d6a9f;
    --accent-color: #4a90c7;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --transition: all 0.3s ease;
}

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

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

.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 0;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-right {
    flex: 1;
    height: 85vh;
}

.hero-image {
    width: 100%;
    height: 100%;
}

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

.btn-cta-large {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-cta-large:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 77, 122, 0.3);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
}

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

.intro-split {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 80px;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.3;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    margin-top: 15px;
}

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

.value-cards {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

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

.cards-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 45px 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

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

.services-preview {
    padding: 100px 20px;
}

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

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 18px;
    color: var(--text-light);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 35px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.service-info {
    flex: 1;
    padding-right: 30px;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.service-price {
    min-width: 150px;
    text-align: right;
}

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

.price-period {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.split-story {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 80px;
    background-color: var(--bg-light);
}

.split-story .split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.btn-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
}

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

.testimonials {
    padding: 100px 20px;
}

.testimonials-grid {
    display: flex;
    gap: 35px;
    margin-top: 50px;
}

.testimonial-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

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

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 20px;
    color: var(--bg-white);
}

.cta-content {
    text-align: center;
    margin-bottom: 50px;
}

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

.cta-content p {
    font-size: 20px;
    opacity: 0.95;
}

.service-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 18px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.final-info {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.info-columns {
    display: flex;
    gap: 50px;
}

.info-column {
    flex: 1;
}

.info-column h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.info-column p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.85;
    transition: var(--transition);
    font-size: 15px;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: var(--bg-white);
    padding: 25px 20px;
    box-shadow: 0 -4px 20px 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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 120px 20px 80px;
    text-align: center;
}

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

.hero-lead {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-story {
    padding: 100px 20px;
}

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

.story-text {
    flex: 1;
}

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

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

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.team-section {
    padding: 100px 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: -40px auto 60px;
}

.team-details {
    display: flex;
    gap: 80px;
    margin-top: 50px;
}

.team-column {
    flex: 1;
}

.team-column h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.expertise-list {
    list-style: none;
}

.expertise-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
}

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

.team-column p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.step-content {
    flex: 1;
}

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

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

.philosophy-section {
    padding: 100px 20px;
}

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

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

.philosophy-content p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-simple {
    background-color: var(--bg-light);
    padding: 100px 20px;
    text-align: center;
}

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

.cta-simple p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.services-detailed {
    padding: 80px 20px;
}

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

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

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

.service-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.price-period-inline {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 400;
}

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

.service-includes {
    margin-bottom: 30px;
}

.service-includes h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.service-includes ul {
    list-style: none;
}

.service-includes ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.service-includes ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
}

.service-ideal {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    font-size: 16px;
    color: var(--text-light);
    border-left: 4px solid var(--primary-color);
}

.service-detail-image {
    flex: 1;
    max-width: 500px;
}

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

.comparison-section {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.comparison-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

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

.comparison-card strong {
    display: block;
    font-size: 14px;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 8px;
}

.comparison-price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 10px;
}

.cta-services {
    padding: 100px 20px;
    text-align: center;
}

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

.cta-services p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
}

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

.contact-wrapper {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

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

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

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    color: var(--primary-color);
    min-width: 40px;
}

.contact-text strong {
    display: block;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

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

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

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

.contact-note p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(26, 26, 26, 0.9);
    color: var(--bg-white);
    padding: 20px 25px;
    border-radius: 6px;
}

.map-overlay p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.faq-section {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

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

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

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

.legal-page {
    padding: 60px 20px 100px;
}

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

.legal-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-content {
    max-width: 900px;
}

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

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

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

.legal-footer {
    margin-top: 60px;
    text-align: center;
}

.thanks-hero {
    padding: 100px 20px;
}

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

.thanks-icon {
    color: var(--success-color);
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.selected-service {
    margin-bottom: 50px;
}

.service-selection-box {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-selection-box strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-selection-box p {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

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

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

.next-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

.next-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

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

.thanks-note {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
}

.thanks-note p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

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

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

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

.resource-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
}

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

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

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

    .hero-right {
        height: 50vh;
    }

    .intro-split,
    .intro-split.reverse,
    .split-story {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .cards-grid,
    .testimonials-grid {
        flex-direction: column;
    }

    .info-columns,
    .team-details,
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

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

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

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title,
    .page-hero h1 {
        font-size: 32px;
    }

    .service-item {
        flex-direction: column;
        gap: 20px;
    }

    .service-info {
        padding-right: 0;
    }

    .service-price {
        text-align: left;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

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