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

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

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

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

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

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

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

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

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

.ad-notice {
    font-size: 11px;
    color: #999;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.hero-split {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

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

.hero-content {
    flex: 1;
}

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

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

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

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

.cta-secondary:hover {
    background-color: #3498db;
    color: #fff;
}

.cta-inline {
    display: inline-block;
    color: #3498db;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}

.cta-inline:hover {
    color: #2980b9;
}

.features-split {
    padding: 100px 0;
    background-color: #fff;
}

.feature-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.feature-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

.feature-image img {
    width: 100%;
    border-radius: 12px;
}

.services-grid {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    width: calc(33.333% - 20px);
    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 12px 24px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.service-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

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

.select-service {
    width: 100%;
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.why-us-split {
    padding: 100px 0;
    background-color: #fff;
}

.why-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.benefits-list li {
    padding: 15px 0;
    font-size: 18px;
    color: #555;
    border-bottom: 1px solid #eee;
}

.benefits-list li strong {
    color: #3498db;
}

.why-image img {
    width: 100%;
    border-radius: 12px;
}

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #fff;
}

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

.testimonial-card {
    flex: 1;
    background: rgba(255,255,255,0.15);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    min-width: 280px;
}

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

.author {
    font-weight: 600;
    font-style: italic;
}

.process-split {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.process-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

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

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

.step-text h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-text p {
    font-size: 16px;
    color: #666;
}

.process-image img {
    width: 100%;
    border-radius: 12px;
}

.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 16px;
    color: #666;
}

.service-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: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
}

.btn-submit {
    background-color: #27ae60;
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.info-split {
    padding: 100px 0;
    background-color: #fff;
}

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

.info-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

.info-image img {
    width: 100%;
    border-radius: 12px;
}

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

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff3cd;
    padding: 30px;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
}

.disclaimer-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #856404;
}

.disclaimer-box p {
    font-size: 16px;
    color: #856404;
    line-height: 1.8;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

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

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

.footer-column ul li {
    margin-bottom: 12px;
}

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

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #3498db;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.9;
}

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

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

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

.about-split {
    padding: 100px 0;
    background-color: #fff;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

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

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

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

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

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3498db;
}

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

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

.team-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.team-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.team-image img {
    width: 100%;
    border-radius: 12px;
}

.certifications {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.certifications p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

.cta-about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
    color: #fff;
}

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 20px;
    margin-bottom: 30px;
}

.services-detail {
    padding: 80px 0;
    background-color: #fff;
}

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

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

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
}

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

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

.service-detail-content h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #3498db;
}

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

.service-detail-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.btn-service {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.warranty-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

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

.warranty-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.warranty-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3498db;
}

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

.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.contact-info {
    flex: 1;
}

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

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3498db;
}

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

.contact-map {
    flex: 1;
    position: relative;
}

.contact-map img {
    width: 100%;
    border-radius: 12px;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
}

.visit-info {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.visit-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.visit-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.visit-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #3498db;
}

.visit-card ul {
    list-style: none;
}

.visit-card ul li {
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.faq-section {
    padding: 100px 0;
    background-color: #fff;
}

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

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

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

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

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

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

.cta-contact h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-contact p {
    font-size: 20px;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 70vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

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

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

.order-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.order-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.order-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.next-steps {
    background-color: #e8f5e9;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #27ae60;
    text-align: center;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    padding: 12px 0;
    color: #333;
    border-bottom: 1px solid #c8e6c9;
    font-size: 16px;
}

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

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

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

.legal-page {
    padding: 80px 0;
    background-color: #fff;
}

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

.update-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #3498db;
}

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

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page ul li,
.legal-page ol li {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2980b9;
}

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

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

.cookie-table th {
    background-color: #3498db;
    color: #fff;
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

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

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

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

    .service-card {
        width: calc(50% - 15px);
    }

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

@media (max-width: 600px) {
    .service-card {
        width: 100%;
    }

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

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

    .form-wrapper {
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}