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

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

.hero-section {
    margin-bottom: 60px;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(44, 62, 80, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
}

.services-preview {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: calc(33.333% - 16px);
    min-width: 300px;
    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);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
}

.card-content {
    padding: 24px;
}

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

.card-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.6;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
}

.benefits-section {
    background-color: #ecf0f1;
    padding: 60px 20px;
    margin-bottom: 80px;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

.benefit-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.booking-section {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.booking-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.booking-header p {
    font-size: 16px;
    color: #7f8c8d;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 15px;
}

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

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

.submit-btn {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    background-color: #fff3cd;
    padding: 40px 20px;
    margin-bottom: 80px;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    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: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

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

.page-header {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 60px;
}

.page-header-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-header-content p {
    font-size: 18px;
}

.services-detail {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    gap: 0;
}

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

.service-detail-image {
    width: 40%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
}

.service-detail-content {
    flex: 1;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

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

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

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #555;
    font-size: 15px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.device-type {
    font-size: 15px;
    color: #555;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #3498db;
}

.warranty-section {
    background-color: #ecf0f1;
    padding: 60px 20px;
}

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

.warranty-container h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
}

.warranty-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

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

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

.warranty-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.about-intro {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.about-container {
    display: flex;
    gap: 48px;
    align-items: center;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.about-image-block {
    width: 45%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #e9ecef;
}

.values-section {
    background-color: #ecf0f1;
    padding: 60px 20px;
    margin-bottom: 80px;
}

.values-header {
    text-align: center;
    margin-bottom: 50px;
}

.values-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.value-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    width: calc(50% - 12px);
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

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

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

.process-section {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.process-container h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.process-step {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

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

.expertise-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.expertise-container {
    display: flex;
    gap: 48px;
    align-items: center;
}

.expertise-content {
    flex: 1;
}

.expertise-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.expertise-list {
    list-style: none;
    padding-left: 0;
}

.expertise-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #555;
    font-size: 15px;
}

.expertise-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.expertise-image {
    width: 40%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #e9ecef;
}

.stats-section {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    padding: 60px 20px;
    margin-bottom: 80px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
    color: #ffffff;
}

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

.stat-label {
    font-size: 16px;
    color: #ecf0f1;
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.contact-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 16px;
    font-style: italic;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.day {
    font-weight: 600;
    color: #2c3e50;
}

.time {
    color: #555;
}

.address-text,
.email-text {
    line-height: 1.8;
}

.contact-map-block {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    background-color: #e9ecef;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.9), transparent);
    padding: 24px;
    color: #ffffff;
    text-align: center;
}

.map-overlay p {
    font-size: 16px;
    font-weight: 600;
}

.directions-section {
    background-color: #ecf0f1;
    padding: 60px 20px;
    margin-bottom: 80px;
}

.directions-container {
    max-width: 1000px;
    margin: 0 auto;
}

.directions-container h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
}

.directions-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

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

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

.direction-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.faq-section {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.faq-container h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

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

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

.thanks-section {
    max-width: 800px;
    margin: 60px auto 80px;
    padding: 0 20px;
}

.thanks-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 60px 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.thanks-details {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-details h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 24px;
    text-align: center;
}

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

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

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

.step-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
}

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

.service-info {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

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

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

.thanks-contact {
    background-color: #ecf0f1;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-contact h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.thanks-contact p {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s;
}

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

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

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

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

.legal-page {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.legal-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.legal-container h1 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

.legal-section {
    margin-bottom: 32px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    margin-top: 20px;
}

.legal-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .service-card {
        width: 100%;
    }

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

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

    .service-detail-image {
        width: 100%;
        min-height: 250px;
    }

    .about-container {
        flex-direction: column;
    }

    .about-image-block {
        width: 100%;
        height: 300px;
    }

    .expertise-container {
        flex-direction: column;
    }

    .expertise-image {
        width: 100%;
        height: 300px;
    }

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

    .value-card {
        width: 100%;
    }

    .stat-item {
        width: calc(50% - 20px);
    }
}