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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c6fa8;
    --accent-color: #e67e22;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 16px;
    overflow-x: hidden;
}

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

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

.main-nav {
    background: #ffffff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.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: 26px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: var(--success-color);
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background: #555555;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    display: inline-block;
    background: var(--accent-color);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 126, 34, 0.5);
}

.hero-section {
    min-height: 600px;
    background: linear-gradient(135deg, rgba(26, 77, 122, 0.95), rgba(44, 111, 168, 0.9)), url('https://images.unsplash.com/photo-1620626011761-996317b8d101?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    padding: 80px 20px;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    background: var(--accent-color);
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-hero:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.intro-section {
    padding: 100px 20px;
    background: #ffffff;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-content p {
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.highlight-text {
    background: #fff3cd;
    padding: 25px;
    border-left: 5px solid var(--accent-color);
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    color: var(--dark-color);
}

.problem-section {
    padding: 100px 20px;
    background: var(--light-color);
}

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

.split-content,
.split-image {
    flex: 1;
    min-width: 300px;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.problem-list {
    margin-top: 35px;
}

.problem-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.problem-icon {
    font-size: 32px;
    flex-shrink: 0;
}

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

.problem-item p {
    color: #666666;
    line-height: 1.6;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.insight-section {
    padding: 100px 20px;
    background: #ffffff;
}

.insight-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.insight-section > p {
    text-align: center;
    font-size: 19px;
    margin-bottom: 50px;
    line-height: 1.8;
}

.insight-boxes {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.insight-box {
    background: var(--light-color);
    padding: 35px;
    border-left: 6px solid var(--secondary-color);
    border-radius: 5px;
}

.insight-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.insight-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #555555;
}

.story-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.story-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    color: #444444;
}

.story-cta {
    margin-top: 35px;
    text-align: center;
}

.benefits-section {
    padding: 100px 20px;
    background: var(--primary-color);
    color: #ffffff;
}

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

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

.benefit-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    opacity: 0.3;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-section {
    padding: 100px 20px;
    background: #ffffff;
}

.testimonials-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.testimonial {
    background: var(--light-color);
    padding: 35px;
    margin-bottom: 25px;
    border-radius: 8px;
    border-left: 5px solid var(--accent-color);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
    color: #444444;
}

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

.services-pricing-section {
    padding: 100px 20px;
    background: var(--light-color);
}

.services-pricing-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #666666;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: #ffffff;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

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

.package-desc {
    color: #666666;
    margin-bottom: 25px;
    font-size: 15px;
}

.package-includes {
    list-style: none;
    margin: 25px 0;
}

.package-includes li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.package-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 30px 0;
    text-align: center;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s;
}

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

.pricing-card.featured .btn-pricing {
    background: var(--accent-color);
}

.pricing-card.featured .btn-pricing:hover {
    background: #d35400;
}

.additional-services-section {
    padding: 100px 20px;
    background: #ffffff;
}

.additional-services-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.additional-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-color);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-info {
    flex: 1;
    min-width: 250px;
}

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

.service-info p {
    color: #666666;
    line-height: 1.6;
}

.service-price {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.price-label {
    font-size: 14px;
    color: #888888;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-service {
    display: inline-block;
    padding: 12px 25px;
    background: var(--secondary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.urgency-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.urgency-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.urgency-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444444;
}

.form-section {
    padding: 100px 20px;
    background: var(--light-color);
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.form-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #666666;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group a {
    color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.final-cta-section {
    padding: 100px 20px;
    background: var(--primary-color);
    color: #ffffff;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #ffffff;
}

.final-cta-section p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-final {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--accent-color);
    color: #ffffff;
}

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

.btn-secondary {
    background: var(--secondary-color);
    color: #ffffff;
}

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

.btn-outline {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.main-footer {
    background: var(--dark-color);
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    color: #cccccc;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #444444;
    text-align: center;
    color: #888888;
}

.page-hero {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    text-align: center;
}

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

.hero-lead {
    font-size: 22px;
    opacity: 0.9;
}

.about-story,
.values-section,
.team-section,
.approach-section,
.certification-section,
.services-intro,
.main-services,
.additional-services-detailed,
.warranty-section,
.process-section,
.contact-section,
.faq-section {
    padding: 80px 20px;
}

.about-story {
    background: #ffffff;
}

.story-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.story-text,
.story-image {
    flex: 1;
    min-width: 300px;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.values-section {
    background: var(--light-color);
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.value-card p {
    line-height: 1.7;
    color: #555555;
}

.team-section {
    background: #ffffff;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
    color: #666666;
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

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

.approach-section {
    background: var(--light-color);
}

.approach-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.approach-step {
    display: flex;
    gap: 25px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    flex-shrink: 0;
    width: 70px;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.step-content p {
    line-height: 1.7;
    color: #555555;
}

.certification-section {
    background: #ffffff;
}

.certification-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.certification-section > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    color: #666666;
}

.cert-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.cert-item {
    background: var(--light-color);
    padding: 20px 30px;
    border-radius: 5px;
    font-weight: 600;
    color: var(--primary-color);
}

.cta-section {
    padding: 80px 20px;
    background: var(--light-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666666;
}

.services-intro {
    background: #ffffff;
}

.intro-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #555555;
}

.main-services {
    background: var(--light-color);
}

.main-services h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.service-detailed {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    position: relative;
}

.service-detailed.featured-service {
    border: 3px solid var(--accent-color);
}

.popular-label {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--accent-color);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h3 {
    font-size: 32px;
    color: var(--primary-color);
}

.service-price-tag {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555555;
}

.service-includes h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

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

.service-includes ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.service-includes ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.additional-services-detailed {
    background: #ffffff;
}

.additional-services-detailed h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.add-service-card {
    background: var(--light-color);
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--secondary-color);
}

.add-service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.add-service-content > p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555555;
}

.add-service-list {
    list-style: none;
    margin: 20px 0;
}

.add-service-list li {
    padding: 8px 0 8px 25px;
    position: relative;
}

.add-service-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.add-service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.add-service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.warranty-section {
    background: var(--light-color);
}

.warranty-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--primary-color);
}

.warranty-section > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #555555;
}

.warranty-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.warranty-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.warranty-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.warranty-item p {
    line-height: 1.7;
    color: #555555;
}

.process-section {
    background: #ffffff;
}

.process-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.timeline-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--light-color);
    border-radius: 8px;
}

.timeline-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    flex-shrink: 0;
    width: 70px;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.timeline-content p {
    line-height: 1.7;
    color: #555555;
}

.contact-section {
    background: var(--light-color);
}

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

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

.contact-info h2,
.contact-map h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

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

.contact-item p {
    line-height: 1.7;
    color: #555555;
}

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

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

.contact-note {
    font-size: 14px;
    color: #888888;
    font-style: italic;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 15px;
    text-align: center;
}

.directions {
    margin-top: 25px;
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
}

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

.directions p {
    line-height: 1.7;
    color: #555555;
    margin-bottom: 10px;
}

.faq-section {
    background: #ffffff;
}

.faq-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.faq-item {
    background: var(--light-color);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

.faq-item p {
    line-height: 1.7;
    color: #555555;
}

.thanks-section {
    padding: 100px 20px;
    background: var(--light-color);
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--success-color);
    color: #ffffff;
    font-size: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555555;
}

.thanks-info {
    margin: 30px 0;
}

.selected-service {
    background: #fff3cd;
    padding: 20px;
    border-radius: 5px;
    font-size: 18px;
}

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

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

.step-box {
    display: flex;
    gap: 20px;
    background: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: left;
}

.step-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    flex-shrink: 0;
    width: 50px;
}

.step-box p {
    line-height: 1.7;
    color: #555555;
}

.thanks-contact {
    margin: 40px 0;
    padding: 25px;
    background: #ffffff;
    border-radius: 8px;
}

.thanks-contact p {
    margin-bottom: 10px;
}

.thanks-contact a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

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

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.legal-section {
    padding: 80px 20px;
    background: #ffffff;
}

.legal-section h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555555;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 10px;
    color: #555555;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .intro-content h2,
    .split-content h2,
    .insight-section h2 {
        font-size: 28px;
    }

    .benefits-section h2,
    .services-pricing-section h2,
    .final-cta-section h2 {
        font-size: 32px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

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

    .story-card {
        padding: 30px 20px;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

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