/* 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;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h2 {
    color: #0066cc;
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0066cc;
}

.nav-btn a {
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-btn:first-child a {
    background: transparent;
    border: 1px solid #0066cc;
    color: #0066cc;
}

.nav-btn:first-child a:hover {
    background: #0066cc;
    color: #fff;
}

.nav-btn:last-child a {
    background: #0066cc;
    color: #fff;
    border: 1px solid #0066cc;
}

.nav-btn:last-child a:hover {
    background: #0052a3;
    border-color: #0052a3;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e6f0ff 0%, #ffffff 100%);
    padding: 80px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #003366;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #0066cc;
    color: #fff;
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-secondary:hover {
    background: #0066cc;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-outline:hover {
    background: #0066cc;
    color: #fff;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #003366;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #0066cc;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Features Overview */
.features-overview {
    padding: 100px 0;
    background: #fff;
}

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

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #003366;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: #f8f9fa;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: #0066cc;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #003366;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #fff;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author strong {
    display: block;
    color: #003366;
    margin-bottom: 5px;
}

/* Pricing Toggle */
.pricing-toggle {
    padding: 30px 0;
    background: #f8f9fa;
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.save-badge {
    background: #0066cc;
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #0066cc;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Pricing Highlights */
.pricing-highlights {
    padding: 100px 0;
    background: #f8f9fa;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    position: relative;
    border: 1px solid #eee;
}

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

.pricing-card.featured {
    border: 2px solid #0066cc;
    transform: scale(1.05);
}

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

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #003366;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 25px;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

.pricing-card ul li.not-included {
    color: #999;
    text-decoration: line-through;
}

.price-desc {
    color: #666;
    font-size: 0.9rem;
    margin-top: -15px;
    margin-bottom: 20px;
}

/* Pricing Plans Section */
.pricing-plans {
    padding: 50px 0 100px;
    background: #f8f9fa;
}

.annual-price {
    display: none;
}

/* Feature Comparison Table */
.feature-comparison {
    padding: 100px 0;
    background: #fff;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
}

.comparison-table th {
    background: #0066cc;
    color: white;
    font-weight: bold;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-table td:first-child {
    font-weight: bold;
    text-align: left;
    background: #f0f5ff;
}

.check-mark {
    color: #00cc66;
    font-weight: bold;
}

.x-mark {
    color: #cc0000;
    font-weight: bold;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: #fff;
}

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

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    background: #f8f9fa;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #003366;
}

/* Features Detail Page */
.features-detail {
    padding: 50px 0 100px;
    background: #fff;
}

.feature-highlight {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    gap: 50px;
}

.feature-highlight.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    text-align: center;
}

.feature-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #003366;
}

.feature-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
}

.feature-text ul {
    list-style: none;
    margin: 30px 0;
}

.feature-text ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    margin-bottom: 10px;
}

.feature-text ul li::before {
    content: '✓';
    color: #0066cc;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Tech Specs */
.tech-specs {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.spec-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.spec-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #003366;
    text-align: center;
}

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

.spec-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

/* Authentication Pages */
.auth-section {
    padding: 50px 0;
    background: #f8f9fa;
}

/* About Page */
.company-story {
    padding: 100px 0;
    background: #fff;
}

.company-story .container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 30px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    text-align: center;
}

.story-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    padding: 100px 0;
    background: #f8f9fa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card,
.vision-card,
.values-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 1.6;
}

.values-card ul {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.values-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.values-card ul li:before {
    content: '✓';
    color: #0066cc;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.team-section {
    padding: 100px 0;
    background: #fff;
}

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

.team-member {
    text-align: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

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

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

.member-info h3 {
    font-size: 1.3rem;
    color: #003366;
    margin-bottom: 5px;
}

.position {
    color: #0066cc;
    font-weight: 500;
    margin-bottom: 15px;
}

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

.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0066cc 0%, #003366 100%);
    color: #fff;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
}

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

.careers-cta h2 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 20px;
}

.careers-cta p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Contact Page */
.contact-section {
    padding: 50px 0;
    background: #fff;
}

.contact-container {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info {
    flex: 1;
}

.contact-form-container {
    flex: 2;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.contact-info h2,
.contact-form-container h2 {
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 30px;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    color: #003366;
    margin-bottom: 10px;
}

.contact-item p {
    color: #666;
    margin-bottom: 5px;
}

.social-links {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: inline-block;
    padding: 8px 15px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.social-link:hover {
    background: #0052a3;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

.map-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 30px;
}

.map-container {
    height: 400px;
    background: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #eee;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #666;
}

.auth-container {
    display: flex;
    gap: 50px;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.auth-form-wrapper {
    flex: 1;
    padding: 50px;
}

.auth-image {
    flex: 1;
    text-align: center;
    background: linear-gradient(135deg, #e6f0ff 0%, #ffffff 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-image img {
    max-width: 100%;
    height: auto;
}

.auth-form-wrapper h1 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 15px;
}

.auth-form-wrapper p {
    color: #666;
    margin-bottom: 30px;
}

.auth-form {
    margin-bottom: 30px;
}

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

.form-row {
    display: flex;
    gap: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

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

.btn-block {
    width: 100%;
    text-align: center;
}

.forgot-password {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #0066cc;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.auth-divider span {
    background: #fff;
    padding: 0 15px;
    position: relative;
    z-index: 1;
    color: #666;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
    z-index: 0;
}

.social-login {
    margin-bottom: 30px;
}

.social-login .btn {
    margin-bottom: 12px;
}

.social-login .btn:last-child {
    margin-bottom: 0;
}

.form-row .form-group {
    flex: 1;
    min-width: 0;
}

.social-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #f0f0f0;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
}

.auth-switch {
    text-align: center;
    color: #666;
}

.auth-switch a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0066cc 0%, #003366 100%);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: #fff;
    color: #0066cc;
}

.cta-section .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #003366;
    color: #fff;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col h3 {
    font-size: 1.5rem;
}

.footer-col p,
.footer-col ul {
    color: #ccc;
}

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

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

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

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .feature-highlight {
        flex-direction: column !important;
        text-align: center;
    }

    .feature-text ul {
        text-align: left;
    }

    /* Auth pages responsive */
    .auth-container {
        flex-direction: column;
    }

    .auth-image {
        min-height: 300px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    /* Contact page responsive */
    .contact-container {
        flex-direction: column;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    /* About page responsive */
    .company-story .container {
        flex-direction: column;
    }

    .story-content,
    .story-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

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

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

    /* Additional mobile enhancements */
    .container {
        width: 95%;
        padding: 0 10px;
    }

    .auth-form-wrapper {
        padding: 30px 20px;
    }

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

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 50px 0;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .features-grid,
    .steps,
    .testimonial-grid,
    .pricing-cards,
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .feature-highlight {
        margin-bottom: 60px;
    }

    /* Additional small screen enhancements */
    .comparison-table table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 5px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
    }

    .member-image {
        width: 100px;
        height: 100px;
    }
}