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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1f2937;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #6b7280;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 120px;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
    border-color: #2563eb;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: #6b7280;
    color: white;
    border-color: #6b7280;
}

.btn-secondary:hover {
    background-color: #4b5563;
    border-color: #4b5563;
}

.btn-outline {
    background-color: transparent;
    color: #031336;
    border-color: #2563eb;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #374151;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4b5563;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    font-size: 2rem;
    color: #2563eb;
}

.feature-item span {
    font-weight: 500;
    color: #1f2937;
}

/* Services Hero */
.services-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.services-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.hero-stats .stat span {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

/* Service Hero */
.service-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.service-hero .hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-hero .hero-text {
    max-width: none;
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-hero .hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    justify-content: start;
}

.service-hero .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-hero .feature i {
    color: #2563eb;
    font-size: 1rem;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #2563eb;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: #f9fafb;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat span {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-card.detailed {
    padding: 2.5rem;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.service-card.detailed .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #6b7280;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.service-features .fa-check {
    color: #10b981;
    font-size: 0.75rem;
}

.service-features .fa-times {
    color: #ef4444;
    font-size: 0.75rem;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.price {
    font-weight: 600;
    color: #1f2937;
}

.price .amount {
    font-size: 1.5rem;
    color: #2563eb;
}

.price .period {
    font-size: 0.875rem;
    color: #6b7280;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #1d4ed8;
    transform: translateX(4px);
}

/* Services Detailed */
.services-detailed {
    background-color: #f9fafb;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #2563eb;
    font-size: 1.5rem;
}

.feature h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature p {
    color: #6b7280;
}

/* Why Choose Us */
.why-choose-us {
    background-color: #1f2937;
    color: white;
}

.why-choose-us .section-header h2,
.why-choose-us .section-header p {
    color: white;
}

.why-choose-us .feature {
    text-align: center;
}

.why-choose-us .feature-icon {
    background-color: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    margin: 0 auto 1.5rem;
}

.why-choose-us .feature h3 {
    color: white;
    margin-bottom: 1rem;
}

.why-choose-us .feature p {
    color: #d1d5db;
}

/* FAQ Section */
.faq {
    background-color: #f9fafb;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    color: #1f2937;
}

.faq-question i {
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 2rem 1.5rem;
    background-color: #f9fafb;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
}

.form-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: #1f2937;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: #2563eb;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    width: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-item p {
    margin: 0;
    color: #6b7280;
}

.social-links {
    margin-top: 3rem;
}

.social-links h4 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2563eb;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: #1f2937;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    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: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Service Process */
.service-process {
    background-color: #f9fafb;
}

.process-steps,
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline {
    gap: 3rem;
}

.step,
.process-step {
    text-align: center;
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.step .step-number {
    margin: 0 auto 1rem;
}

.step-content h3,
.process-step h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.step-content p,
.process-step p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.step-content ul,
.process-step ul {
    list-style: none;
    margin-top: 1rem;
}

.step-content li,
.process-step li {
    padding: 0.25rem 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.process-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
}

/* Pricing */
.service-pricing {
    background-color: #f9fafb;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 2px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #2563eb;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
}

.price .period {
    display: block;
    font-size: 1rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Testimonials */
.testimonials {
    background-color: #1f2937;
    color: white;
}

.testimonials h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.7;
}

.testimonial-author strong {
    color: white;
    font-weight: 600;
}

.testimonial-author span {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Service Categories */
.service-categories {
    background-color: #f9fafb;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #2563eb;
    font-size: 1.5rem;
}

.category-card h3 {
    margin-bottom: 1.5rem;
    color: #1f2937;
}

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

.category-card li {
    padding: 0.5rem 0;
    color: #6b7280;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.875rem;
}

.category-card li:last-child {
    border-bottom: none;
}

/* Emergency Response */
.emergency-response {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.emergency-response h2 {
    color: white;
    margin-bottom: 2rem;
}

.emergency-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.emergency-text h3 {
    color: white;
    margin-bottom: 1rem;
}

.emergency-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.response-times {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.response-item h4 {
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.response-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 0;
}

.emergency-contact {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.contact-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.emergency-number {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.contact-card h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.contact-card li {
    padding: 0.25rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Types and Flags Sections */
.valuation-types,
.red-flags {
    background-color: #f9fafb;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.type-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.type-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #2563eb;
    font-size: 1.5rem;
}

.type-card h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.type-card p {
    margin-bottom: 1.5rem;
    color: #6b7280;
}

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

.type-card li {
    padding: 0.25rem 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.flags-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.green-flags,
.red-flags-list {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.green-flags h3 {
    color: #059669;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.red-flags-list h3 {
    color: #dc2626;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.green-flags ul,
.red-flags-list ul {
    list-style: none;
}

.green-flags li,
.red-flags-list li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.875rem;
    border-bottom: 1px solid #f3f4f6;
}

.green-flags li:last-child,
.red-flags-list li:last-child {
    border-bottom: none;
}

/* Legal Compliance */
.legal-compliance {
    background-color: #1f2937;
    color: white;
}

.legal-compliance h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.compliance-item {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.compliance-item i {
    font-size: 2rem;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.compliance-item h3 {
    color: white;
    margin-bottom: 1rem;
}

.compliance-item p {
    color: #d1d5db;
}

/* Market Insights */
.market-insights {
    background-color: #f9fafb;
}

.insights-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.insight-text h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.insight-text p {
    margin-bottom: 2rem;
    color: #6b7280;
}

.key-factors h4 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.key-factors ul {
    list-style: none;
}

.key-factors li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.875rem;
}

.key-factors strong {
    color: #1f2937;
    font-weight: 600;
}

.market-data {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.market-data h3 {
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

.data-grid {
    display: grid;
    gap: 1.5rem;
}

.data-item {
    text-align: center;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.data-item h4 {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.data-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    display: block;
    margin-bottom: 0.5rem;
}

.data-item p {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0;
}

/* Quality Guarantee */
.quality-guarantee {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.quality-guarantee h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.guarantee-content {
    text-align: center;
    margin-bottom: 3rem;
}

.guarantee-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.guarantee-item {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.guarantee-item i {
    font-size: 2rem;
    color: #a7f3d0;
    margin-bottom: 1rem;
}

.guarantee-item h3 {
    color: white;
    margin-bottom: 1rem;
}

.guarantee-item p {
    color: rgba(255, 255, 255, 0.9);
}

/* Service CTA */
.service-cta,
.services-cta {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Thank You Page */
.thank-you {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.what-next {
    margin: 4rem 0;
}

.what-next h2 {
    margin-bottom: 2rem;
    color: #1f2937;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.step h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.step p {
    color: #6b7280;
}

.cta-section {
    background-color: #f9fafb;
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.cta-section h2 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.cta-section p {
    margin-bottom: 2rem;
    color: #6b7280;
}

.social-follow {
    margin-top: 3rem;
}

.social-follow h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.featured-services {
    background-color: #f9fafb;
    padding: 80px 0;
}

.featured-services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* Legal Content */
.legal-content {
    padding: 120px 0 80px;
    min-height: 80vh;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.last-updated {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-text {
    max-width: 800px;
    line-height: 1.8;
}

.legal-text h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    font-size: 1.5rem;
}

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-size: 1.25rem;
}

.legal-text h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
    font-size: 1.125rem;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.legal-text a {
    color: #2563eb;
    text-decoration: none;
}

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

.contact-info {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #2563eb;
}

.cookie-table {
    margin: 1.5rem 0;
}

.cookie-table h4 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.cookie-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #1f2937;
}

.cookie-table td {
    color: #4b5563;
    font-size: 0.875rem;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-management {
    background-color: #2563eb;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.cookie-management h2 {
    color: white;
    margin-bottom: 1rem;
}

.cookie-management p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cookie-management .btn {
    background-color: white;
    color: #2563eb;
    border-color: white;
}

.cookie-management .btn:hover {
    background-color: #f3f4f6;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #72767a;
    color: white;
    padding: 1.5rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    color: #d1d5db;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* Cookie Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-content .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #6b7280;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.modal-content .close:hover {
    color: #374151;
}

.modal-content h3 {
    margin-bottom: 2rem;
    color: #1f2937;
}

.cookie-option {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-option:last-of-type {
    border-bottom: none;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-option p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-hero h1,
    .service-hero h1 {
        font-size: 2rem;
    }
    
    /* Hero sections */
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-hero .hero-content,
    .service-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-hero .hero-features {
        grid-template-columns: 1fr;
    }
    
    /* Grids */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step:nth-child(even) {
        flex-direction: column;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .categories-grid,
    .types-grid,
    .testimonials-grid,
    .compliance-grid,
    .guarantee-features {
        grid-template-columns: 1fr;
    }
    
    .flags-content,
    .insights-content,
    .emergency-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .next-steps {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Cookie banner */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .services-hero,
    .service-hero {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-buttons .btn {
        min-width: auto;
    }
    
    .service-card,
    .feature-card,
    .category-card,
    .type-card {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
}

/* Print styles */
@media print {
    .navbar,
    .cookie-banner,
    .modal,
    .btn,
    .social-icons {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000;
        page-break-after: avoid;
    }
    
    .legal-content {
        padding: 0;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .service-card,
    .feature-card,
    .category-card {
        border-width: 2px;
    }
    
    .faq-item {
        border-width: 2px;
    }
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Skip link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2563eb;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10001;
}

.skip-link:focus {
    top: 6px;
}
