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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #fff;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-position: inside;
}

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

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

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

.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}

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

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

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

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

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

.hero-intro {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--bg-white);
    padding: 100px 0 80px;
    text-align: center;
}

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

.hero-desc {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.visual-block {
    padding: 0;
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.intro-story {
    background: var(--bg-light);
    padding: 80px 0;
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.story-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.trust-block {
    background: var(--bg-white);
    padding: 70px 0;
}

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

.trust-item {
    flex: 1 1 280px;
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.services-preview {
    background: var(--bg-light);
    padding: 80px 0;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

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

.service-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-body h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-body p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-primary,
.btn-outline,
.btn-large,
.btn-submit {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: #d35400;
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-submit {
    background: var(--secondary-color);
    color: var(--bg-white);
    width: 100%;
    border: none;
    font-size: 18px;
}

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

.testimonial-inline {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0;
}

.testimonial-inline blockquote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.8;
    text-align: center;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
}

.process-section {
    background: var(--bg-white);
    padding: 80px 0;
}

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

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

.step {
    flex: 1 1 calc(25% - 23px);
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

.step p {
    color: var(--text-light);
    font-size: 15px;
}

.cta-visual {
    background: var(--bg-light);
    padding: 80px 0;
}

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

.cta-text,
.cta-image {
    flex: 1 1 400px;
}

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

.cta-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.cta-image img {
    border-radius: 10px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.form-section {
    background: var(--bg-white);
    padding: 80px 0;
}

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

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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(--secondary-color);
}

.final-trust {
    background: var(--bg-light);
    padding: 70px 0;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.trust-list {
    max-width: 700px;
    margin: 0 auto;
}

.trust-list li {
    padding: 15px 0;
    font-size: 17px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.trust-list li:last-child {
    border-bottom: none;
}

.footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-col p {
    opacity: 0.8;
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    opacity: 0.8;
    margin-bottom: 10px;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.btn-sticky {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    transition: all 0.3s;
    display: inline-block;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

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

.btn-cookie,
.btn-cookie-outline {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid var(--bg-white);
}

.btn-cookie {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-cookie:hover {
    background: var(--bg-light);
}

.btn-cookie-outline {
    background: transparent;
    color: var(--bg-white);
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--bg-white);
    padding: 80px 0 60px;
    text-align: center;
}

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

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

.about-story {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.about-story p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.values-section {
    background: var(--bg-light);
    padding: 80px 0;
}

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

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-intro {
    background: var(--bg-white);
    padding: 70px 0;
    text-align: center;
}

.team-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-desc {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.numbers-section {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 70px 0;
}

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

.number-item {
    flex: 1 1 200px;
    text-align: center;
}

.number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.number-item p {
    font-size: 16px;
    opacity: 0.9;
}

.approach-section {
    background: var(--bg-light);
    padding: 80px 0;
}

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

.approach-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.certifications {
    background: var(--bg-white);
    padding: 70px 0;
}

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

.cert-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.cert-item {
    flex: 1 1 calc(33.333% - 27px);
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.cert-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cert-item p {
    color: var(--text-light);
}

.cta-about {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

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

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.services-detail {
    background: var(--bg-white);
    padding: 60px 0;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    align-items: center;
}

.service-detail-image,
.service-detail-content {
    flex: 1 1 400px;
}

.service-detail-image img {
    border-radius: 10px;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-features {
    margin: 25px 0;
    padding-left: 20px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-light);
}

.service-pricing {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.price-label {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}

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

.price-note {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.warranty-section {
    background: var(--bg-light);
    padding: 70px 0;
}

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

.warranty-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-services {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.cta-services h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-info {
    background: var(--bg-light);
    padding: 60px 0;
}

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

.contact-item {
    flex: 1 1 280px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--secondary-color);
}

.contact-intro {
    background: var(--bg-white);
    padding: 70px 0;
}

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

.contact-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.visit-us {
    background: var(--bg-light);
    padding: 70px 0;
}

.visit-us h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.office-card {
    flex: 1 1 calc(50% - 20px);
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.office-address {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.office-hours {
    color: var(--text-light);
    margin-bottom: 15px;
}

.office-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.faq-contact {
    background: var(--bg-white);
    padding: 70px 0;
}

.faq-contact h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

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

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.map-section {
    background: var(--bg-light);
    padding: 70px 0;
}

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

.map-placeholder {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 100px 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
}

.thanks-hero {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
}

.thanks-details {
    background: var(--bg-white);
    padding: 70px 0;
}

.thanks-details h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.step-box {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

.step-box p {
    color: var(--text-light);
}

.thanks-service {
    background: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

.thanks-service h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-selected {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.thanks-service p {
    color: var(--text-light);
    font-size: 17px;
}

.thanks-resources {
    background: var(--bg-white);
    padding: 70px 0;
}

.thanks-resources h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.resource-card {
    flex: 1 1 350px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
}

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

.resource-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.thanks-contact {
    background: var(--bg-light);
    padding: 70px 0;
    text-align: center;
}

.thanks-contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-contact p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.contact-email {
    font-size: 20px;
    margin-top: 20px;
}

.contact-email a {
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-page {
    background: var(--bg-white);
    padding: 60px 0;
}

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

.legal-updated {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
}

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

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

.legal-page p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-intro h1 {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 16px;
    }

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

    .step {
        flex: 1 1 calc(50% - 15px);
    }

    .cta-split {
        gap: 30px;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .cert-item {
        flex: 1 1 100%;
    }

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

    .step-box {
        flex: 1 1 100%;
    }

    .nav {
        gap: 15px;
    }

    .nav a {
        font-size: 14px;
    }

    .image-container img {
        height: 300px;
    }

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

    .btn-sticky {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-intro {
        padding: 60px 0 40px;
    }

    .hero-intro h1 {
        font-size: 26px;
    }

    .step {
        flex: 1 1 100%;
    }

    .footer-grid {
        gap: 30px;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-outline {
        width: 100%;
    }

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