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

:root {
    --primary-color: #d4536f;
    --secondary-color: #2c2c2c;
    --accent-color: #f5a3b8;
    --text-color: #333;
    --light-bg: #fafafa;
    --white: #ffffff;
    --gray: #666;
    --light-gray: #e5e5e5;
    --success: #4CAF50;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

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

.hero-split {
    margin-top: 75px;
    display: flex;
    min-height: 650px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg) var(--spacing-md);
    background: linear-gradient(135deg, #f5e6ea 0%, #faf5f7 100%);
}

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

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #c2445e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 83, 111, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.intro-split {
    display: flex;
    min-height: 550px;
}

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

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

.split-left img,
.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-box {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.content-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.content-box p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
}

.services-preview {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

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

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    min-height: 400px;
    background: var(--white);
    margin-bottom: 2rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

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

.service-visual {
    flex: 1;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-split:hover .service-visual img {
    transform: scale(1.05);
}

.service-info {
    flex: 1;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.cta-center {
    text-align: center;
    margin-top: var(--spacing-md);
}

.testimonial-split {
    display: flex;
    min-height: 500px;
}

.testimonial-left {
    flex: 1.2;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.testimonial-content blockquote {
    margin-bottom: 2.5rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-content cite {
    color: var(--accent-color);
    font-size: 1rem;
    font-style: normal;
}

.testimonial-right {
    flex: 1;
    overflow: hidden;
}

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

.booking-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.booking-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    padding: 0 var(--spacing-md);
}

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

.booking-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.booking-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

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

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--gray);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.booking-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    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(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c2445e;
    transform: translateY(-2px);
}

.final-cta-split {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color) 0%, #c2445e 100%);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background: var(--light-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.main-footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: var(--spacing-lg) var(--spacing-md);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #c2445e;
}

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

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

.page-header-split {
    margin-top: 75px;
    display: flex;
    min-height: 400px;
}

.header-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-lg);
    background: var(--light-bg);
}

.header-left h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.header-left p {
    font-size: 1.2rem;
    color: var(--gray);
}

.header-right {
    flex: 1;
    overflow: hidden;
}

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

.story-split,
.values-split {
    display: flex;
    min-height: 500px;
}

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

.value-item {
    margin-bottom: 2rem;
}

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

.value-item p {
    font-size: 1.05rem;
    color: var(--gray);
}

.team-split {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--white);
}

.team-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

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

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

.team-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

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

.member-image {
    flex: 0.8;
}

.member-image img {
    width: 100%;
    border-radius: 8px;
}

.member-info {
    flex: 1.2;
}

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

.member-info .role {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
}

.cta-about-split {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--light-bg);
    text-align: center;
}

.services-detailed {
    padding: var(--spacing-lg) 0;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    margin-bottom: 3rem;
}

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

.service-image {
    flex: 1;
    overflow: hidden;
}

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

.service-description {
    flex: 1;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light-bg);
}

.service-description h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.service-description p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--gray);
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    font-size: 1.05rem;
    color: var(--gray);
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: -1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.btn-book-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.btn-book-service:hover {
    background: #c2445e;
    transform: translateY(-2px);
}

.why-choose-split {
    display: flex;
    min-height: 450px;
    background: var(--white);
}

.cta-services-split {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color) 0%, #c2445e 100%);
    text-align: center;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info-left {
    flex: 1;
    padding: var(--spacing-lg);
    background: var(--light-bg);
}

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

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.info-block p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

.info-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-block a:hover {
    text-decoration: underline;
}

.transport-list {
    margin-top: 1rem;
}

.transport-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--gray);
}

.transport-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-map-right {
    flex: 1;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255,255,255,0.95);
    padding: 1rem 2rem;
    border-radius: 8px;
}

.map-overlay p {
    font-weight: 600;
    color: var(--secondary-color);
}

.faq-split {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--white);
}

.faq-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.faq-header h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
}

.faq-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item-split {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item-split.reverse {
    flex-direction: row-reverse;
}

.faq-question {
    flex: 1;
}

.faq-question h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-answer {
    flex: 1.5;
}

.faq-answer p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
}

.cta-contact-split {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color) 0%, #c2445e 100%);
    text-align: center;
}

.thanks-split {
    margin-top: 75px;
    display: flex;
    min-height: 700px;
}

.thanks-left {
    flex: 1.5;
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
}

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

.success-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-align: center;
}

.thanks-message {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--success);
    font-weight: 600;
}

.thanks-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1rem;
    text-align: center;
}

.next-steps {
    margin: 3rem 0;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.steps-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--gray);
}

.steps-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.3rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #c2445e;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.thanks-right {
    flex: 1;
    overflow: hidden;
}

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

.suggestions-split {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--white);
}

.suggestions-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    text-align: center;
}

.suggestions-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.suggestion-card {
    flex: 1;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

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

.suggestion-card p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
}

.legal-page {
    margin-top: 75px;
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--white);
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.update-date {
    color: var(--gray);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
}

.legal-section p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section ul li {
    padding: 0.5rem 0;
    position: relative;
    font-size: 1.05rem;
    color: var(--gray);
    list-style: disc;
}

.legal-section a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.gdpr-table,
.cookie-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

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

.gdpr-table th,
.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--light-gray);
}

.gdpr-table td,
.cookie-table td {
    padding: 1rem;
    color: var(--gray);
    border-bottom: 1px solid var(--light-gray);
}

.rights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    flex: 1 1 calc(50% - 1rem);
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
}

.right-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    margin-top: 0;
}

.right-item p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0;
}

.cookie-type {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.cookie-type h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    margin-top: 0;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .testimonial-split,
    .booking-split,
    .page-header-split,
    .story-split,
    .values-split,
    .service-detail-split,
    .why-choose-split,
    .contact-split,
    .thanks-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .service-detail-split.reverse,
    .values-split.reverse,
    .team-member-split.reverse,
    .faq-item-split.reverse {
        flex-direction: column;
    }

    .service-card-split,
    .service-card-split.reverse {
        flex-direction: column;
        min-height: auto;
    }

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

    .faq-item-split,
    .faq-item-split.reverse {
        flex-direction: column;
        text-align: center;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }

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

    .nav-menu li {
        padding: 0.8rem 2rem;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .content-box h2,
    .section-header h2 {
        font-size: 2rem;
    }

    .service-info h3 {
        font-size: 1.5rem;
    }

    .price,
    .price-tag {
        font-size: 1.8rem;
    }

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

    .cookie-actions {
        justify-content: center;
    }

    .header-left h1 {
        font-size: 2.2rem;
    }

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

    .legal-container h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .cta-primary,
    .cta-secondary,
    .cta-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .content-box,
    .service-info {
        padding: 2rem;
    }

    .booking-form {
        padding: 1.5rem;
    }
}