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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.navbar {
    background-color: var(--bg-white);
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu 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;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.hero-content {
    flex: 1;
}

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

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

.hero-visual {
    flex: 1;
}

.hero-visual img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

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

.cta-secondary {
    background-color: var(--accent-color);
}

.cta-secondary:hover {
    background-color: #d97706;
}

.intro-alternate {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.intro-text {
    flex: 1;
}

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

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

.principles-grid {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.principles-grid h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.principles-container {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.principle-card {
    flex: 1;
    padding: 40px 30px;
    background-color: var(--bg-light);
    border-radius: 10px;
    text-align: left;
}

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

.principle-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.principle-card p {
    color: var(--text-light);
    font-size: 16px;
}

.testimonial-offset {
    max-width: 900px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 15px;
    position: relative;
}

.testimonial-offset blockquote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.testimonial-offset cite {
    display: block;
    margin-top: 20px;
    font-size: 18px;
    font-style: normal;
    opacity: 0.9;
}

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

.services-intro {
    text-align: center;
    margin-bottom: 50px;
}

.services-intro h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

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

.service-item {
    flex: 1 1 calc(50% - 15px);
    padding: 35px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-item.featured {
    border-color: var(--primary-color);
    background-color: #eff6ff;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.service-header h3 {
    font-size: 24px;
    color: var(--secondary-color);
}

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

.service-item p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-color);
}

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

.form-section {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.form-container {
    flex: 1;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.form-container > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-image {
    flex: 1;
}

.form-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

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

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

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

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

.why-different {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.why-different h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

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

.difference-item {
    flex: 1;
    text-align: left;
}

.difference-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.difference-item p {
    color: var(--text-light);
    font-size: 16px;
}

.final-cta {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 40px;
    text-align: center;
    margin-top: 100px;
}

.final-cta-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background-color: var(--bg-light);
    padding: 60px 40px 30px;
    margin-top: 0;
}

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    color: var(--text-light);
}

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

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

.footer-section ul li a {
    color: var(--text-light);
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-light);
}

.page-hero {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-hero p {
    font-size: 20px;
    color: var(--text-light);
}

.about-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    align-items: center;
}

.about-content {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.mission-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: var(--bg-light);
    border-radius: 15px;
    text-align: center;
}

.mission-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

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

.values-grid {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.values-grid h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    padding: 35px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-align: left;
}

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

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

.approach-section {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    align-items: center;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.approach-content {
    flex: 1;
}

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

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

.team-philosophy {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.team-philosophy h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.team-philosophy p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.stats-showcase {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: var(--primary-color);
    border-radius: 15px;
}

.stat-item {
    flex: 1;
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

.cta-about {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.services-intro-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

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

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

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

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

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

.service-detail-item.premium {
    background-color: var(--bg-light);
    padding: 60px 40px;
    border-radius: 15px;
}

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

.service-tag {
    display: inline-block;
    padding: 6px 15px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-tag.popular {
    background-color: var(--accent-color);
}

.service-tag.premium {
    background-color: var(--secondary-color);
}

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

.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-light);
    margin-bottom: 25px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.service-detail-list {
    list-style: none;
    margin-top: 15px;
}

.service-detail-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
}

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

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

.service-detail-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.btn-service {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.process-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: var(--bg-light);
    border-radius: 15px;
    text-align: center;
}

.process-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

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

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

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

.process-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.process-step p {
    color: var(--text-light);
}

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

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

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

.faq-item {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

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

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-services {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

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

.contact-info {
    flex: 1;
}

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

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

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

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

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.contact-note h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-note p {
    color: var(--text-light);
}

.contact-image {
    flex: 1;
}

.contact-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.map-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--secondary-color);
}

.map-container {
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder {
    padding: 60px 40px;
    text-align: center;
}

.map-placeholder p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.visit-info {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    align-items: center;
}

.visit-content {
    flex: 1;
}

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

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

.visit-image {
    flex: 1;
}

.visit-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.contact-cta {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.thanks-hero {
    max-width: 900px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: var(--bg-light);
    border-radius: 15px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    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: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.thanks-service-info {
    margin-top: 30px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
}

.selected-service {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 20px;
}

.next-steps {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.next-steps h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.steps-container {
    display: flex;
    gap: 30px;
}

.step-card {
    flex: 1;
    padding: 35px;
    background-color: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

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

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.step-card p {
    color: var(--text-light);
}

.thanks-resources {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    align-items: center;
}

.resources-content {
    flex: 1;
}

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

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

.preparation-list {
    list-style: none;
    margin-top: 20px;
}

.preparation-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
}

.preparation-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.resources-image {
    flex: 1;
}

.resources-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.thanks-cta {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.thanks-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.page-hero.legal {
    margin-bottom: 60px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.legal-container h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.legal-container h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.legal-container ul {
    margin: 15px 0 15px 30px;
    color: var(--text-color);
}

.legal-container ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table thead {
    background-color: var(--bg-light);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--secondary-color);
}

.cookie-table td {
    color: var(--text-color);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-split,
    .intro-alternate,
    .form-section,
    .about-split,
    .approach-section,
    .service-detail-item,
    .contact-split,
    .visit-info,
    .thanks-resources {
        flex-direction: column;
    }

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

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

    .principles-container,
    .difference-grid,
    .stats-showcase,
    .process-steps,
    .steps-container {
        flex-direction: column;
    }

    .services-split {
        flex-direction: column;
    }

    .service-item {
        flex: 1 1 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .values-container {
        flex-direction: column;
    }

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

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

    .cookie-table {
        font-size: 14px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }
}