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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

ul {
    list-style: none;
}

.header-split {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    background: var(--bg-light);
    padding: 4rem 5%;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.btn-secondary:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.btn-submit {
    background: var(--success-color);
    color: var(--bg-white);
    width: 100%;
}

.btn-submit:hover {
    background: #229954;
}

.intro-split {
    display: flex;
    align-items: center;
}

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

.intro-image,
.intro-text {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.intro-text {
    padding: 4rem 5%;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.trust-section {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 5rem 5%;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-container h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-item {
    flex: 1;
    min-width: 250px;
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-showcase {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.service-card-split {
    display: flex;
    background: var(--bg-white);
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-visual,
.service-details {
    flex: 1;
}

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

.service-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-details > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

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

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.testimonial-section {
    padding: 5rem 5%;
    background: var(--bg-white);
}

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

.testimonial-container h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.form-section-split {
    display: flex;
    min-height: 700px;
}

.form-left,
.form-right {
    flex: 1;
}

.form-left {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-left > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--success-color);
}

.form-right {
    background: var(--bg-light);
    padding: 4rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    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(--accent-color);
}

.form-group textarea {
    resize: vertical;
}

.final-cta-split {
    padding: 5rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.footer-split {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p,
.footer-column a {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a {
    display: block;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--success-color);
    color: var(--bg-white);
}

.btn-cookie-accept:hover {
    background: #229954;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    background: var(--bg-light);
}

.page-hero-split .hero-content {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero-split .hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-hero-split .hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.page-hero-split .hero-image {
    flex: 1;
}

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

.story-split {
    display: flex;
    padding: 5rem 0;
}

.story-text,
.story-image {
    flex: 1;
}

.story-text {
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

.mission-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

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

.mission-container h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.mission-lead {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.mission-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.mission-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.team-split {
    padding: 5rem 5%;
}

.team-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.team-member-split {
    display: flex;
    margin-bottom: 4rem;
    gap: 3rem;
    align-items: center;
}

.team-member-split.reverse {
    flex-direction: row-reverse;
}

.member-image {
    flex: 1;
    max-width: 400px;
}

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

.member-info {
    flex: 1.5;
}

.member-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.member-role {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
}

.member-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.values-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

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

.values-container h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background: var(--bg-white);
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.achievements-split {
    display: flex;
    padding: 5rem 0;
}

.achievements-content {
    flex: 1.5;
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.achievements-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.achievement-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.achievement-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.achievement-year {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 100px;
}

.achievement-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.achievements-image {
    flex: 1;
}

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

.cta-about,
.cta-services,
.cta-contact {
    padding: 5rem 5%;
    background: var(--primary-color);
    text-align: center;
}

.cta-about .cta-content,
.cta-services .cta-content,
.cta-contact .cta-content {
    color: var(--bg-white);
}

.cta-about h2,
.cta-services h2,
.cta-contact h2 {
    color: var(--bg-white);
}

.cta-about p,
.cta-services p,
.cta-contact p {
    color: rgba(255, 255, 255, 0.9);
}

.services-intro {
    padding: 3rem 5%;
    text-align: center;
    background: var(--bg-white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.services-detailed {
    padding: 3rem 5%;
}

.service-detail-card {
    background: var(--bg-white);
    margin-bottom: 4rem;
    box-shadow: var(--shadow);
}

.service-header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    background: var(--bg-light);
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header-left h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-tagline {
    color: var(--text-light);
    font-size: 1.1rem;
}

.service-header-right {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.service-level,
.service-duration {
    background: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.service-content-split {
    display: flex;
}

.service-content-split.reverse {
    flex-direction: row-reverse;
}

.service-content-split .service-image {
    flex: 1;
}

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

.service-content-split .service-description {
    flex: 1.5;
    padding: 3rem;
}

.service-content-split .service-description h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.detailed-list {
    margin: 1.5rem 0;
}

.detailed-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.6;
}

.detailed-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-price-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.comparison-section {
    padding: 4rem 5%;
    background: var(--bg-white);
}

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

.comparison-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.comparison-table {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-row {
    display: flex;
}

.comparison-row.header {
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 700;
}

.comparison-row:not(.header) {
    background: var(--bg-white);
}

.comparison-row:not(.header):nth-child(even) {
    background: var(--bg-light);
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    border-right: 1px solid var(--border-color);
}

.comparison-cell:last-child {
    border-right: none;
}

.faq-section {
    padding: 4rem 5%;
    background: var(--bg-light);
}

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

.faq-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-item {
    background: var(--bg-white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.contact-info-split {
    display: flex;
    padding: 4rem 0;
}

.contact-left,
.contact-right {
    flex: 1;
}

.contact-left {
    padding: 3rem 5%;
}

.contact-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.contact-text a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-text a:hover {
    color: var(--secondary-color);
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.map-placeholder {
    position: relative;
    height: 100%;
    min-height: 500px;
}

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

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(44, 62, 80, 0.9);
    color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 4px;
}

.map-overlay p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.visit-info {
    padding: 5rem 5%;
    background: var(--bg-light);
}

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

.visit-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.visit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.visit-card {
    flex: 1;
    min-width: 250px;
    background: var(--bg-white);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.visit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.studio-info-split {
    display: flex;
    padding: 5rem 0;
}

.studio-image,
.studio-text {
    flex: 1;
}

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

.studio-text {
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.studio-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.studio-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

.studio-features {
    margin: 1.5rem 0;
}

.studio-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.studio-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.contact-reasons {
    padding: 5rem 5%;
}

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

.reasons-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.reason-item {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    padding: 2rem;
    border-top: 4px solid var(--accent-color);
}

.reason-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.quick-contact {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.quick-contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quick-contact-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.quick-contact-container p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.quick-contact-container a {
    color: var(--accent-color);
    font-weight: 600;
}

.response-time {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-left: 4px solid var(--success-color);
}

.response-time p {
    margin-bottom: 0.5rem;
}

.thanks-hero {
    padding: 5rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.thanks-icon svg {
    stroke: var(--bg-white);
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.thanks-info-split {
    display: flex;
    padding: 5rem 5%;
    gap: 3rem;
}

.thanks-left,
.thanks-right {
    flex: 1;
}

.thanks-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
}

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.thanks-card {
    background: var(--bg-light);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

.thanks-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-card p {
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.thanks-card a {
    color: var(--accent-color);
    font-weight: 600;
}

.thanks-selected-service {
    padding: 3rem 5%;
    background: var(--bg-white);
}

.selected-service-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.selected-service-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-display {
    background: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 1rem;
}

.service-display p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.service-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.thanks-resources {
    padding: 4rem 5%;
    background: var(--bg-light);
}

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

.resources-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.resources-container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.resources-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 250px;
    background: var(--bg-white);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.resource-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

.btn-resource {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-resource:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.thanks-testimonial {
    padding: 4rem 5%;
    background: var(--primary-color);
    color: var(--bg-white);
}

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

.testimonial-content blockquote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thanks-social {
    padding: 4rem 5%;
    background: var(--bg-white);
}

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

.social-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.social-container > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.social-note {
    background: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
}

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

.cta-thanks {
    padding: 4rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.legal-hero {
    padding: 4rem 5%;
    background: var(--bg-light);
    text-align: center;
}

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

.legal-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-date {
    font-size: 1.1rem;
    color: var(--text-light);
}

.legal-content {
    padding: 4rem 5%;
}

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

.legal-article h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-article h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.legal-article h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--primary-color);
}

.legal-article p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-article ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-article li {
    list-style: disc;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-article strong {
    color: var(--text-color);
}

.legal-article a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

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

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-section-split,
    .story-split,
    .team-member-split,
    .achievements-split,
    .contact-info-split,
    .studio-info-split,
    .page-hero-split,
    .service-content-split,
    .thanks-info-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .service-card-split.reverse,
    .team-member-split.reverse,
    .service-content-split.reverse {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .member-image {
        max-width: 100%;
    }

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

    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        padding: 2rem 5%;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        gap: 1rem;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .trust-stats,
    .testimonials-grid,
    .mission-cards,
    .values-grid,
    .visit-grid,
    .reasons-grid,
    .resources-grid {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .service-header-split {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-header-right {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-content {
        flex-direction: column;
    }
}
