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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 12px;
    border: 1px solid #ecf0f1;
    border-radius: 4px;
    background: #f8f9fa;
}

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

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

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

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    color: #7f8c8d;
    margin-bottom: 32px;
}

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

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #2980b9;
}

.intro-section {
    padding: 80px 0;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.visual-block {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.visual-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 24px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    padding: 0 24px 16px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.service-price .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.service-price .period {
    font-size: 14px;
    color: #7f8c8d;
}

.btn-select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #2980b9;
}

.split-info-section {
    padding: 80px 0;
}

.split-container {
    display: flex;
}

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

.info-left {
    display: flex;
    align-items: center;
}

.info-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.info-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

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

.features-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 18px;
    color: #555;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.testimonial-section {
    padding: 80px 0;
    background: #2c3e50;
    color: #ffffff;
}

.testimonial-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.testimonials-split {
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 16px;
}

.testimonial-author span {
    font-size: 14px;
    color: #bdc3c7;
}

.cta-section {
    padding: 80px 0;
}

.cta-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-text p {
    font-size: 18px;
    color: #666;
}

.cta-form-container {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    padding: 14px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.disclaimer-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #7f8c8d;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 12px 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: 30px;
}

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

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

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

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background: #7f8c8d;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-split-section {
    padding: 80px 0;
}

.about-image {
    overflow: hidden;
    border-radius: 8px;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.experience-split {
    padding: 80px 0;
}

.experience-content {
    flex: 1;
}

.experience-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    background: #3498db;
    padding: 60px;
    border-radius: 8px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
}

.approach-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.approach-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.step-card {
    flex: 1;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.cta-about {
    padding: 80px 0;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-about p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

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

.service-detail-card {
    margin-bottom: 60px;
}

.service-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-detail-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 24px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.services-cta {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: #7f8c8d;
}

.modal-close:hover {
    color: #2c3e50;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.modal-content p {
    margin-bottom: 24px;
    color: #666;
}

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

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

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-map {
    flex: 1;
}

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

.map-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    padding: 20px;
    border-radius: 6px;
}

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

.contact-details-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-details-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.detail-card {
    flex: 1;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.detail-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.faq-item {
    margin-bottom: 32px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.thanks-section {
    padding: 80px 0;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.thanks-message {
    margin-bottom: 40px;
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.thanks-details {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-confirmation h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.service-confirmation p {
    font-size: 20px;
    font-weight: 600;
    color: #3498db;
}

.next-steps {
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #2c3e50;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-item p {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-top: 8px;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.contact-reminder {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.contact-reminder h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-reminder p {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

.contact-email {
    font-size: 20px;
    font-weight: 600;
    color: #3498db;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 32px;
}

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

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
}

.cookies-table th,
.cookies-table td {
    border: 1px solid #dfe6e9;
    padding: 12px;
    text-align: left;
}

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #555;
}

@media (max-width: 768px) {
    .hero-split,
    .split-layout,
    .split-container,
    .testimonials-split,
    .cta-split,
    .service-split,
    .contact-split,
    .footer-grid,
    .services-grid,
    .values-grid,
    .approach-steps,
    .details-grid {
        flex-direction: column;
    }

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

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

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

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

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

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

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