/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* Container Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 900px;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

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

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
}

.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: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: #3498db;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    display: block;
    transition: all 0.3s ease;
}

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    object-fit: cover;
}

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-tertiary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-primary {
    background: #ffffff;
    color: #667eea;
}

.cta-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.cta-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-tertiary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.cta-tertiary:hover {
    background: #3498db;
    color: #ffffff;
}

/* Trust Strip */
.trust-strip {
    background: #34495e;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.trust-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Services Intro Section */
.services-intro {
    padding: 90px 0;
    background: #f8f9fa;
}

.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: center;
    color: #555;
}

.intro-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Showcase */
.services-showcase {
    padding: 90px 0;
    background: #ffffff;
}

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

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

.section-header p {
    font-size: 1.15rem;
    color: #666;
}

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

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.service-icon {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    height: 180px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #27ae60;
}

.price-period {
    font-size: 1rem;
    color: #999;
}

.btn-select-service {
    width: 100%;
    padding: 12px 20px;
    background: #3498db;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

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

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: #ecf0f1;
}

.testimonial {
    border-left: 5px solid #3498db;
    padding-left: 30px;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    color: #34495e;
}

.testimonial p {
    margin-bottom: 20px;
}

.testimonial cite {
    font-style: normal;
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 600;
}

/* Why Us Section */
.why-us-section {
    padding: 90px 0;
    background: #ffffff;
}

.why-us-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    flex: 1 1 calc(50% - 40px);
    min-width: 280px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* CTA Middle Section */
.cta-middle {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.cta-middle h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-middle p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Process Section */
.process-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.process-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

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

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

.step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Contact Form Section */
.contact-form-section {
    padding: 90px 0;
    background: #ffffff;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label a {
    color: #3498db;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #27ae60;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

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

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: #34495e;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

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

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

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-section a {
    color: #bdc3c7;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #3498db;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

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

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Services Detail */
.services-detail {
    padding: 90px 0;
}

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

.service-detail-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

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

.service-detail-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

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

.service-includes li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 800;
    font-size: 1.2rem;
}

.price-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.price-label {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 5px;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #27ae60;
}

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.services-cta h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 35px;
}

/* About Page */
.about-intro {
    padding: 90px 0;
    background: #ffffff;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    object-fit: cover;
}

/* Values Section */
.values-section {
    padding: 90px 0;
    background: #f8f9fa;
}

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

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

.value-item {
    flex: 1 1 calc(50% - 40px);
    min-width: 250px;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Team Section */
.team-section {
    padding: 90px 0;
    background: #ffffff;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.team-member {
    flex: 1 1 calc(25% - 40px);
    min-width: 240px;
    max-width: 280px;
    text-align: center;
}

.member-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.member-role {
    font-size: 0.95rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 12px;
}

.member-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* Timeline Section */
.timeline-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.timeline-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #3498db;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-year {
    position: absolute;
    left: -50px;
    top: 0;
    width: 80px;
    height: 40px;
    background: #3498db;
    color: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Certifications Section */
.certifications-section {
    padding: 90px 0;
    background: #ffffff;
}

.certifications-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.cert-item {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 250px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.cert-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cert-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

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

.about-cta h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Contact Page */
.contact-info-section {
    padding: 90px 0;
}

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

.contact-details {
    flex: 1;
}

.contact-block {
    margin-bottom: 50px;
}

.contact-block h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.info-item a {
    color: #3498db;
}

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

.note {
    font-size: 0.9rem;
    font-style: italic;
    color: #999;
    margin-top: 10px;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.contact-reasons h2 {
    font-size: 2.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

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

.reason-item {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 250px;
}

.reason-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.reason-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.quick-contact {
    padding: 80px 0;
    background: #ffffff;
}

.quick-contact-box {
    text-align: center;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 12px;
}

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

.quick-contact-box p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.faq-preview {
    padding: 90px 0;
    background: #f8f9fa;
}

.faq-preview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Thanks Page */
.thanks-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.success-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.thanks-lead {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.service-confirmation {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.selected-service {
    font-size: 1.1rem;
}

.next-steps {
    background: #ffffff;
    color: #2c3e50;
    padding: 50px;
    border-radius: 12px;
    text-align: left;
    margin-top: 50px;
}

.next-steps h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

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

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

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

.step-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.thanks-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.info-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.info-box {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 250px;
    text-align: center;
}

.info-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.thanks-cta {
    padding: 80px 0;
    background: #ffffff;
}

.thanks-cta h2 {
    font-size: 2.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-thanks {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
    background: #ffffff;
}

.legal-text {
    line-height: 1.8;
}

.legal-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.legal-text ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.legal-text li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

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

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

.last-updated {
    font-style: italic;
    color: #999;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

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

.cookies-table td {
    font-size: 0.95rem;
    color: #555;
}

.notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin: 30px 0;
    border-radius: 5px;
    font-size: 0.95rem;
    color: #856404;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .hero-section {
        padding: 60px 0 50px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .hero-content {
        gap: 30px;
    }

    .intro-stats {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
    }

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

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

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

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

    .map-placeholder {
        min-height: 300px;
    }

    .benefits-layout,
    .values-grid,
    .cert-grid,
    .reasons-grid,
    .info-boxes {
        flex-direction: column;
    }

    .benefit-item,
    .value-item,
    .cert-item,
    .reason-item,
    .info-box {
        flex: 1 1 100%;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        flex: 1 1 100%;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        display: none;
    }

    .timeline-year {
        position: relative;
        left: 0;
        margin-bottom: 15px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .section-header h2,
    .why-us-section h2,
    .process-section h2,
    .contact-form-section h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cookies-table {
        font-size: 0.85rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container,
    .container-narrow {
        padding: 0 15px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-card {
        padding: 20px;
    }

    .contact-form {
        padding: 25px;
    }

    .next-steps {
        padding: 30px 20px;
    }

    .quick-contact-box {
        padding: 30px 20px;
    }
}
