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

:root {
    --primary-color: #e91e63;
    --secondary-color: #ff4081;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

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

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

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

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

.main-nav {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

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

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

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

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
}

.hero-left {
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
}

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

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.split-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.split-left,
.split-right {
    flex: 1;
    padding: 80px 60px;
}

.split-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.split-left img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.split-right h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.split-right p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.intro-section {
    background: #f9f9f9;
}

.problem-section {
    padding: 100px 40px;
    background: linear-gradient(to bottom, #fff 0%, #fafafa 100%);
}

.centered-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.centered-content h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.centered-content > p {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: #555;
}

.problem-cards {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.card {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.solution-split {
    background: #fff;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

.services-preview {
    padding: 100px 40px;
    background: linear-gradient(135deg, #fff5f8 0%, #fff 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

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

.section-header p {
    font-size: 20px;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    min-width: 300px;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

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

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

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

.booking-form-section {
    padding: 100px 40px;
    background: #f9f9f9;
}

.form-container-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}

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

.form-left {
    background: linear-gradient(135deg, #e91e63 0%, #ff4081 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.form-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.benefits-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 20px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px 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: 16px 40px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonials-section {
    padding: 100px 40px;
    background: #fff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-size: 44px;
    color: var(--dark-color);
}

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

.testimonial {
    flex: 1;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

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

.final-cta-split {
    background: linear-gradient(135deg, #fff 0%, #fce4ec 100%);
}

.cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.cta-content p {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.cta-large {
    display: inline-block;
    padding: 20px 50px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.main-footer {
    background: var(--dark-color);
    color: #fff;
    padding: 60px 40px 30px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #bbb;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
}

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

.page-hero-simple {
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    text-align: center;
}

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

.hero-content-centered h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.hero-content-centered p {
    font-size: 20px;
    color: #555;
}

.about-content {
    padding: 80px 0;
}

.values-section {
    padding: 100px 40px;
    background: #f9f9f9;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    min-width: 300px;
}

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

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.team-split {
    padding: 80px 0;
    background: #fff;
}

.philosophy-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #fff5f8 0%, #fff 100%);
}

.philosophy-section p {
    font-size: 19px;
    line-height: 1.9;
    max-width: 1000px;
    margin: 0 auto 30px;
    text-align: center;
    color: #555;
}

.cta-section-simple {
    padding: 100px 40px;
    background: var(--dark-color);
}

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

.cta-content-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content-centered p {
    font-size: 19px;
    color: #ddd;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

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

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 100px;
    align-items: center;
    gap: 60px;
}

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

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-detail-left img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

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

.service-detail-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #666;
}

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

.btn-service {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.pricing-info {
    padding: 80px 40px;
    background: #f9f9f9;
    text-align: center;
}

.pricing-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.pricing-info p {
    font-size: 17px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #555;
}

.cta-section-services {
    padding: 100px 40px;
    background: linear-gradient(135deg, #e91e63 0%, #ff4081 100%);
}

.cta-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-left p {
    font-size: 19px;
    color: #fff;
}

.cta-right {
    flex: 0 0 auto;
}

.cta-button-large {
    display: inline-block;
    padding: 20px 50px;
    background: #fff;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.contact-split {
    padding: 80px 40px;
}

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

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

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

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

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

.contact-info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

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

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

.map-placeholder {
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

.faq-section {
    padding: 100px 40px;
    background: #f9f9f9;
}

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

.faq-item {
    background: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

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

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.contact-cta {
    padding: 100px 40px;
    background: var(--dark-color);
}

.legal-page {
    padding: 80px 40px;
}

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

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

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

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

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

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

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.legal-container em {
    font-style: italic;
    color: #888;
}

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

.thanks-container {
    max-width: 900px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.thanks-message {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.service-selected {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

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

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

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

.step {
    flex: 1;
    max-width: 250px;
}

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

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

.step p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

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

    .split-container,
    .form-container-split,
    .contact-container {
        flex-direction: column;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

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

    .hero-content p {
        font-size: 17px;
    }

    .split-left,
    .split-right,
    .form-left,
    .form-right {
        padding: 40px 30px;
    }

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

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