/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.95) 0%, rgba(0, 76, 153, 0.95) 100%),
                url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1920&q=80') center/cover no-repeat;
    color: white;
    padding: 100px 20px 60px;
    text-align: center;
    margin-top: 60px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 76, 153, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: backwards;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background: white;
    color: #0066cc;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: backwards;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.secondary-btn {
    background: white;
    color: #0066cc;
    margin-top: 1.5rem;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.contact .cta-btn {
    background: white;
    color: #0066cc;
    width: 100%;
    max-width: 400px;
    margin: 2rem auto 0;
    display: block;
}

/* Trust Stats Section */
.trust-stats {
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    padding: 40px 20px;
    color: white;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.stat-context {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #0066cc;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #0066cc;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e6f2ff;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info strong {
    display: block;
    color: #0066cc;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.testimonial-info span {
    display: block;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.testimonial-badge {
    font-size: 0.85rem;
    color: #0066cc;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    color: #e6f2ff;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
}

.testimonial-rating {
    color: #FFB800;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e6f2ff;
}

.testimonial-author strong {
    color: #0066cc;
    font-size: 1.2rem;
    font-weight: 600;
}

.testimonial-author span {
    color: #666;
    font-size: 0.95rem;
}

.testimonial-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e6f2ff;
}

.testimonial-metrics span {
    font-size: 0.9rem;
    color: #0066cc;
    font-weight: 600;
    background: #f0f7ff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

/* Trust Badges Section */
.trust-badges {
    padding: 60px 20px;
    background: white;
    border-top: 1px solid #e6f2ff;
}

.trust-badges h3 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 600;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.badge-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e6f2ff 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.badge-item:hover {
    border-color: #0066cc;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.15);
}

.badge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.badge-item p {
    color: #0066cc;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Expandable Sections */
.expandable-section {
    padding: 50px 20px;
    background: white;
    position: relative;
}

.expandable-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #004c99 50%, #0066cc 100%);
}

.expandable-section.alternate {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.expandable-section.alternate::before {
    background: linear-gradient(90deg, #004c99 0%, #0066cc 50%, #004c99 100%);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 18px 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e6f2ff 100%);
    border-radius: 12px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0066cc;
}

.section-header:hover {
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.15);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #e6f2ff 0%, #cce5ff 100%);
}

.section-header h2 {
    font-size: 2rem;
    color: #0066cc;
    margin: 0;
    font-weight: 700;
}

.expand-icon {
    font-size: 3rem;
    color: #0066cc;
    font-weight: bold;
    transition: transform 0.3s ease;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.expand-icon.expanded {
    transform: rotate(45deg);
    background: #0066cc;
    color: white;
}

/* Highlights Grid - Always Visible */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.highlight-card {
    background: white;
    padding: 1.75rem;
    border-radius: 12px;
    border: none;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #004c99);
}

.expandable-section.alternate .highlight-card {
    background: white;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.2);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.75rem;
    background: linear-gradient(135deg, #e6f2ff 0%, #cce5ff 100%);
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-card h3 {
    color: #0066cc;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Expandable Content - Hidden by Default */
.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.expandable-content.expanded {
    max-height: 10000px;
    transition: max-height 1s ease-in;
}

/* Feature Detail Grid */
.feature-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-detail-item {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 1.75rem;
    border-radius: 12px;
    border: 1px solid #e6f2ff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-detail-item:hover {
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.12);
    transform: translateY(-3px);
}

.feature-detail-item h3 {
    color: #0066cc;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-detail-item p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Service Detail Grid */
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-detail-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #0066cc;
    transition: all 0.3s ease;
}

.service-detail-item:hover {
    box-shadow: 0 6px 30px rgba(0, 102, 204, 0.15);
    transform: translateY(-3px);
}

.expandable-section.alternate .service-detail-item {
    background: white;
}

.service-detail-item h3 {
    color: #0066cc;
    font-size: 1.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-detail-item h4 {
    color: #333;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.service-detail-item p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Solutions Detail Grid */
.solutions-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.solution-detail-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 15px;
    border-left: 5px solid #0066cc;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.solution-detail-item:hover {
    box-shadow: 0 6px 28px rgba(0, 102, 204, 0.15);
    transform: translateX(5px);
}

.solution-detail-item h3 {
    color: #0066cc;
    font-size: 1.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-detail-item h4 {
    color: #333;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.solution-detail-item p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Benefits Section */
.benefits-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid #ddd;
}

.benefits-section h2 {
    text-align: center;
    color: #0066cc;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* About Section */
.about {
    padding: 50px 20px;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    color: #0066cc;
}

.about > .container > p {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #666;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    color: #0066cc;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #666;
}

/* Solutions Section */
.solutions {
    padding: 50px 20px;
    background: #f8f9fa;
}

.solutions h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    color: #0066cc;
}

.solutions > .container > p {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #666;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.solution-card h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.solution-card p {
    color: #666;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%),
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&q=80') center/cover no-repeat;
    background-blend-mode: overlay;
    color: white;
    position: relative;
}

.contact h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.contact > .container > p {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.contact-form {
    max-width: 850px;
    margin: 0 auto 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-footer {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-info-item {
    text-align: center;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info {
    text-align: center;
    font-size: 1.1rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 2rem 2rem;
    border-top: 3px solid #0066cc;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066cc 0%, #004c99 50%, #0066cc 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #0066cc;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #0066cc;
}

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.footer-badges span {
    color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
    margin-top: 60px;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
}

/* Features Detail Page */
.features-detail {
    padding: 50px 20px;
    background: white;
}

.feature-detail-card {
    background: #f8f9fa;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-detail-card h2 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.feature-detail-card p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #333;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

/* Services Page */
.services-intro {
    padding: 40px 20px;
    background: white;
    text-align: center;
}

.services-intro h2 {
    color: #0066cc;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.services-intro p {
    font-size: 1.05rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

.services-grid-section {
    padding: 30px 20px 50px;
    background: #f8f9fa;
}

.service-detail-card {
    background: white;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-detail-card h3 {
    color: #0066cc;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-detail-card > p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.service-details {
    margin-top: 2rem;
}

.service-details h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.services-benefits {
    padding: 50px 20px;
    background: white;
}

.services-benefits h2 {
    text-align: center;
    color: #0066cc;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 1.75rem;
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.2);
    transition: all 0.3s ease;
    color: white;
}

.benefit-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 35px rgba(0, 102, 204, 0.3);
}

.benefit-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.5;
}

/* Solutions Page */
.solutions-intro {
    padding: 40px 20px;
    background: white;
    text-align: center;
}

.solutions-intro h2 {
    color: #0066cc;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.solutions-intro p {
    font-size: 1.05rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

.solution-detail-section {
    padding: 30px 20px 50px;
    background: #f8f9fa;
}

.solution-detail-block {
    background: white;
    padding: 2.5rem 2rem;
    margin-bottom: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.solution-detail-block.alternate {
    background: linear-gradient(135deg, #f8f9fa 0%, #e6f2ff 100%);
}

.solution-detail-block h2 {
    color: #0066cc;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.solution-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.solution-content {
    margin-top: 2rem;
}

.solution-features, .solution-benefits, .solution-workflow {
    margin-bottom: 2rem;
}

.solution-features h3, .solution-benefits h3, .solution-workflow h3 {
    color: #0066cc;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.workflow-steps {
    list-style: none;
    padding-left: 0;
    counter-reset: step-counter;
}

.workflow-steps li {
    counter-increment: step-counter;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
    position: relative;
    padding-left: 3rem;
}

.workflow-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 1rem;
    background: #0066cc;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.practice-size-section {
    padding: 50px 20px;
    background: white;
}

.practice-size-section h2 {
    text-align: center;
    color: #0066cc;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.practice-sizes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.size-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-top: 4px solid #0066cc;
}

.size-card h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.size-card p {
    color: #666;
    margin-bottom: 1rem;
}

.size-card ul {
    list-style: none;
    padding-left: 0;
}

.size-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.size-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
}

.specialty-section {
    padding: 50px 20px;
    background: #f8f9fa;
}

.specialty-section h2 {
    text-align: center;
    color: #0066cc;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.specialty-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.specialty-card:hover {
    transform: translateY(-5px);
}

.specialty-card h3 {
    color: #0066cc;
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-content {
    padding: 50px 20px;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section h2 {
    color: #0066cc;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.contact-card h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin: 0.25rem 0;
}

.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 0.5rem;
}

.quick-links a {
    color: #0066cc;
    text-decoration: none;
}

.quick-links a:hover {
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.faq-section {
    padding: 50px 20px;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    color: #0066cc;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
}

.testimonial-section {
    padding: 50px 20px;
    background: white;
}

.testimonial-section h2 {
    text-align: center;
    color: #0066cc;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
}

.testimonial-card p {
    color: #333;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: #0066cc !important;
    font-weight: bold;
    font-style: normal !important;
}

/* CTA Section */
.cta-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header fixes */
    header {
        padding: 0.5rem 0;
    }
    
    nav {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 0.8rem;
        font-size: 0.85rem;
    }

    /* Hero section fixes */
    .hero {
        padding: 80px 15px 40px;
        margin-top: 50px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    .cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    /* Stats Section fixes */
    .trust-stats {
        padding: 30px 15px;
        margin-top: -20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem 0.75rem;
    }

    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }

    .stat-label {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .stat-context {
        font-size: 0.75rem;
        margin-top: 0.3rem;
    }

    /* Section headers */
    .section-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .expand-icon {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 40px 15px;
    }
    
    .testimonials-section h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        margin: 0 10px;
    }

    .testimonial-card::before {
        font-size: 4rem;
        top: -8px;
        left: 15px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .testimonial-metrics {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .testimonial-metrics span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Trust Badges */
    .trust-badges {
        padding: 40px 15px;
    }
    
    .badges-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .badge-item {
        padding: 1.2rem 1rem;
    }
    
    .badge-icon {
        font-size: 2.5rem;
    }
    
    .badge-item p {
        font-size: 1rem;
    }

    /* Content sections */
    .expandable-section {
        padding: 30px 15px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-card {
        padding: 1.5rem;
    }

    .feature-detail-grid,
    .service-detail-grid,
    .solutions-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    /* Contact section */
    .contact {
        padding: 40px 15px;
    }
    
    .contact h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
        margin: 0 10px 2rem;
    }

    .contact-info-footer {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 10px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 100px 15px 60px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .feature-detail-card,
    .service-detail-card,
    .solution-detail-block,
    .feature-detail-item,
    .service-detail-item,
    .solution-detail-item {
        padding: 1.5rem;
        margin: 0 10px;
    }

    /* Footer responsive */
    footer {
        padding: 3rem 15px 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-badges {
        justify-content: center;
        gap: 1rem;
        font-size: 0.85rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.2rem 1rem;
    }
    
    .badges-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .nav-links {
        gap: 0.3rem;
        font-size: 0.75rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .contact-form {
        margin: 0 5px 2rem;
        padding: 1.2rem;
    }
}
