/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Review Cards Enhancements */
.review-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.review-meta img {
    opacity: 0.7;
}

.rating {
    font-weight: 600;
    color: var(--primary-color);
}

.review-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.highlight {
    background: var(--light-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-primary);
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Popular Categories Section */
.popular-categories {
    padding: 4rem 0;
    background: var(--soft-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--light-gray);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 27, 42, 0.1);
}

.category-card img {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.category-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.category-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-stats {
    margin-bottom: 1.5rem;
}

.category-stats span {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: var(--secondary-color);
}

/* Newsletter Enhancements */
.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text {
    text-align: left;
}

.newsletter-text img {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-item img {
    color: var(--success-color);
}

.newsletter-form button img {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .review-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-text {
        text-align: center;
    }
}

:root {
    --navy-blue: #0D1B2A;
    --soft-white: #F5F5F5;
    --orange-accent: #F28C28;
    --steel-gray: #3D3D3D;
    --aqua: #00B4D8;
    --white: #FFFFFF;
    --light-gray: #E5E5E5;
    --dark-gray: #2A2A2A;
    --success: #28a745;
    --error: #dc3545;
    --warning: #ffc107;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--steel-gray);
    background-color: var(--soft-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--navy-blue);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--aqua);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--orange-accent);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--orange-accent), #e67e22);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e67e22, var(--orange-accent));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 140, 40, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--aqua);
    padding: 12px 24px;
    border: 2px solid var(--aqua);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--aqua);
    color: var(--white);
    transform: translateY(-2px);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(13, 27, 42, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy-blue);
}

.logo h1 a {
    color: var(--navy-blue);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--steel-gray);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.8rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Новый дизайн мобильного меню */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: black;
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
    transform-origin: center;
}

/* Hero Section */
.hero {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background-image: url('../images/tech-banner.jpg');
    background-size: cover;
    background-position: center;
    color: rgb(83, 88, 212);
    padding: 80px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.stat-item img {
    filter: brightness(0) invert(1);
}

.stat-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--white);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--soft-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--light-gray);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 27, 42, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--orange-accent);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--navy-blue);
}

/* Reviews Section */
.reviews {
    padding: 4rem 0;
    background: var(--soft-white);
}

.reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 27, 42, 0.15);
}

.review-image {
    height: 200px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--steel-gray);
    font-weight: 500;
}

.placeholder-image {
    background: linear-gradient(135deg, var(--light-gray), #d0d0d0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--steel-gray);
    font-weight: 500;
    width: 100%;
    height: 100%;
}

.product-image, .article-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.review-content {
    padding: 1.5rem;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: var(--orange-accent);
}

.rating-text {
    color: var(--steel-gray);
    font-size: 0.9rem;
}

.review-specs {
    background: var(--soft-white);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.review-specs h4 {
    margin-bottom: 0.5rem;
    color: var(--navy-blue);
}

.specs-list {
    list-style: none;
    font-size: 0.9rem;
}

.specs-list li {
    margin-bottom: 0.25rem;
    color: var(--steel-gray);
}

.review-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--orange-accent);
    margin: 1rem 0;
}

/* Reviews Info Section */
.reviews-info-section {
    background: var(--soft-white);
    padding: 4rem 0;
    margin-top: 3rem;
}

.reviews-info-content h2 {
    text-align: center;
    color: var(--navy-blue);
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 27, 42, 0.12);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.info-item h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-item p {
    color: var(--steel-gray);
    line-height: 1.6;
}

.cta-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-section p {
    color: var(--steel-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--aqua), #0099cc);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.newsletter h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: var(--navy-blue);
    color: var(--soft-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--soft-white);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--orange-accent);
}

.footer-bottom {
    border-top: 1px solid var(--steel-gray);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--soft-white);
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy-blue), var(--steel-gray));
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-content {
    padding: 4rem 0;
    background: var(--white);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.team-section {
    padding: 4rem 0;
    background: var(--soft-white);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--light-gray);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--steel-gray);
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-name {
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.member-position {
    color: var(--orange-accent);
    font-weight: 500;
    margin-bottom: 1rem;
}

.statistics {
    padding: 4rem 0;
    background: var(--navy-blue);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    color: var(--orange-accent);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.testimonials {
    padding: 4rem 0;
    background: var(--white);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--soft-white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--orange-accent);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--steel-gray);
}

.testimonial-author {
    font-weight: 600;
    color: var(--navy-blue);
}

.testimonial-location {
    color: var(--steel-gray);
    font-size: 0.9rem;
}

/* Reviews Page Styles */
.filter-section {
    padding: 2rem 0;
    background: var(--white);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--steel-gray);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--orange-accent);
    color: var(--white);
    border-color: var(--orange-accent);
}

/* Technologies Page Styles */
.tech-categories {
    padding: 4rem 0;
    background: var(--white);
}

/* Modern Technologies Section */
.modern-technologies {
    padding: 4rem 0;
    background: var(--soft-white);
}

.modern-technologies h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--navy-blue);
    font-size: 2.5rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.tech-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(13, 27, 42, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--aqua);
    position: relative;
    overflow: hidden;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(13, 27, 42, 0.15);
    border-top-color: var(--orange-accent);
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--aqua), var(--orange-accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tech-card:hover::before {
    transform: scaleX(1);
}

.tech-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--aqua), var(--orange-accent));
    border-radius: 50%;
    margin: 0 auto 2rem;
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.1);
}

.tech-content h3 {
    color: var(--navy-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.tech-content > p {
    color: var(--steel-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    text-align: justify;
}

.tech-principle,
.tech-benefits,
.tech-applications,
.tech-types,
.tech-features {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--soft-white);
    border-radius: 12px;
    border-left: 4px solid var(--aqua);
}

.tech-principle h4,
.tech-benefits h4,
.tech-applications h4,
.tech-types h4,
.tech-features h4 {
    color: var(--navy-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-principle h4::before,
.tech-benefits h4::before,
.tech-applications h4::before,
.tech-types h4::before,
.tech-features h4::before {
    content: "⚡";
    color: var(--orange-accent);
    font-size: 1.2rem;
}

.tech-benefits ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.tech-benefits li {
    position: relative;
    padding-left: 2rem;
    color: var(--steel-gray);
    line-height: 1.6;
    background: var(--white);
    padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.tech-benefits li:hover {
    background: #f0f8ff;
    transform: translateX(5px);
}

.tech-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0.8rem;
    top: 0.8rem;
    color: var(--aqua);
    font-weight: bold;
    font-size: 1.1rem;
}

.tech-applications p,
.tech-types p,
.tech-features p,
.tech-principle p {
    color: var(--steel-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tech-applications p strong,
.tech-types p strong,
.tech-features p strong {
    color: var(--navy-blue);
    font-weight: 600;
}

/* Additional styles for specific tech sections */
.tech-thermodynamics,
.tech-efficiency,
.tech-environmental,
.tech-maintenance,
.tech-process {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--orange-accent);
    box-shadow: 0 2px 8px rgba(13, 27, 42, 0.05);
}

.tech-thermodynamics h4,
.tech-efficiency h4,
.tech-environmental h4,
.tech-maintenance h4,
.tech-process h4 {
    color: var(--navy-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-thermodynamics h4::before {
    content: "🔄";
    font-size: 1.2rem;
}

.tech-efficiency h4::before {
    content: "⚡";
    color: var(--orange-accent);
    font-size: 1.2rem;
}

.tech-environmental h4::before {
    content: "🌱";
    font-size: 1.2rem;
}

.tech-maintenance h4::before {
    content: "🔧";
    font-size: 1.2rem;
}

.tech-process h4::before {
    content: "⚙️";
    font-size: 1.2rem;
}

/* Responsive design for tech cards */
@media (max-width: 1200px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-card {
        padding: 2rem 1.5rem;
    }
    
    .modern-technologies h2 {
        font-size: 2rem;
    }
    
    .tech-content h3 {
        font-size: 1.5rem;
    }
    
    .tech-principle,
    .tech-benefits,
    .tech-applications,
    .tech-types,
    .tech-features,
    .tech-thermodynamics,
    .tech-efficiency,
    .tech-environmental,
    .tech-maintenance,
    .tech-process {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--soft-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border-top: 4px solid var(--aqua);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.08);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(13, 27, 42, 0.15);
    border-top-color: var(--orange-accent);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(13, 27, 42, 0.1));
}

.category-card h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-card p {
    color: var(--steel-gray);
    line-height: 1.6;
}

/* Featured Technologies Section */
.featured-technologies {
    padding: 4rem 0;
    background: var(--soft-white);
}

.featured-technologies h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--navy-blue);
}

.tech-article {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(13, 27, 42, 0.08);
}

.tech-article:nth-child(even) .tech-content {
    order: 2;
}

.tech-article:nth-child(even) .tech-visual {
    order: 1;
}

.tech-content h3 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.tech-content p {
    color: var(--steel-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tech-benefits,
.tech-applications,
.tech-examples,
.tech-variants,
.tech-process {
    margin: 1.5rem 0;
}

.tech-benefits h4,
.tech-applications h4,
.tech-examples h4,
.tech-variants h4,
.tech-process h4 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tech-benefits ul {
    list-style: none;
    padding: 0;
}

.tech-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--steel-gray);
}

.tech-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--aqua);
    font-weight: bold;
}

.tech-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    width: 100%;
}

.tech-visual img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.1);
    margin-bottom: 1rem;
    background: var(--white);
    padding: 1rem;
}

.placeholder-diagram {
    background: linear-gradient(135deg, var(--aqua), var(--orange-accent));
    color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.1);
    width: 100%;
    max-width: 300px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.article-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.1);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    height: 200px;
    background: var(--light-gray);
}

.big-article-image {
    max-height: 300px;
    background: var(--light-gray);
}

.article-image  img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s 
ease;
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.category {
    background: var(--aqua);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.read-time {
    color: var(--steel-gray);
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.tag {
    background: var(--light-gray);
    color: var(--steel-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--aqua);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--orange-accent);
}

/* Innovation Timeline */
.innovation-timeline {
    padding: 4rem 0;
    background: var(--navy-blue);
    color: var(--white);
    position: relative;
}

.innovation-timeline h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--aqua), var(--orange-accent));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, var(--orange-accent), var(--aqua));
    color: var(--white);
    padding: 1.2rem;
    border-radius: 50%;
    font-weight: 700;
    min-width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 2rem;
    flex: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.timeline-content h4 {
    color: black;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: rgba(57, 98, 223, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Future Technologies */
.future-tech {
    padding: 4rem 0;
    background: var(--white);
}

.future-tech h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--navy-blue);
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.future-card {
    background: var(--soft-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.08);
}

.future-card:hover {
    transform: translateY(-8px);
    border-color: var(--aqua);
    box-shadow: 0 12px 30px rgba(13, 27, 42, 0.15);
}

.future-card h3 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.future-card p {
    color: var(--steel-gray);
    line-height: 1.6;
}

/* Articles Page Styles */
.article-categories {
    padding: 2rem 0;
    background: var(--white);
}

.categories-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--steel-gray);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background: var(--orange-accent);
    color: var(--white);
    border-color: var(--orange-accent);
}

.featured-article {
    padding: 4rem 0;
    background: var(--soft-white);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-label {
    background: var(--orange-accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.featured-text h2 {
    margin: 1rem 0;
}

.featured-image {
    height: 300px;
    background: var(--light-gray);
    border-radius: 12px;
}

.articles-grid-section {
    padding: 4rem 0;
    background: var(--white);
}

/* Contact Page Styles */
.contact-info {
    padding: 4rem 0;
    background: var(--aqua);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--soft-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-section {
    padding: 4rem 0;
    background: var(--soft-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper h2,
.map-wrapper h2 {
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--navy-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--aqua);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.error-message {
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.map-info {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
}

.map-info h3 {
    margin-bottom: 1rem;
    color: var(--navy-blue);
}

.faq-section {
    padding: 4rem 0;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--soft-white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--aqua);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--navy-blue);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--navy-blue);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(13, 27, 42, 0.3);
    z-index: 10000;
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--orange-accent);
}

/* Service Pages */
.service-page {
    padding: 4rem 0;
    background: var(--white);
}

.service-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-content h2 {
    margin: 2rem 0 1rem;
    color: var(--navy-blue);
}

.service-content h3 {
    margin: 1.5rem 0 0.75rem;
    color: var(--steel-gray);
}

.service-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.service-content li {
    margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 6rem 0;
    background: var(--soft-white);
    text-align: center;
}

.thank-you-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 2rem;
}

.thank-you-section h1 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.thank-you-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Menu Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Responsive Design for Technologies Page */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-wrap: wrap;
        position: relative;
    }
    
    /* Новые стили для мобильной навигации */
    .nav {
        display: none;
        width: 100%;
        order: 3;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 16px 16px;
        z-index: 1000;
        overflow: hidden;
    }
    
    .nav.active {
        display: block;
        animation: slideDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        background: var(--white);
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    .nav-link {
        display: block;
        padding: 20px 24px;
        font-size: 16px;
        font-weight: 500;
        color: var(--navy-blue);
        text-decoration: none;
        border-bottom: 1px solid rgba(51, 65, 85, 0.08);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        background: var(--white);
    }
    
    .nav-link:hover {
        background: linear-gradient(90deg, rgba(102, 126, 234, 0.08) 0%, rgba(102, 126, 234, 0.04) 100%);
        color: var(--aqua);
        padding-left: 32px;
        transform: translateX(4px);
    }
    
    .nav-link.active {
        background: linear-gradient(90deg, rgba(102, 126, 234, 0.12) 0%, rgba(102, 126, 234, 0.06) 100%);
        color: var(--aqua);
        font-weight: 600;
        border-left: 4px solid var(--aqua);
    }
    
    .nav-link:last-child {
        border-bottom: none;
        border-radius: 0 0 16px 16px;
    }
    
    .nav-link:first-child {
        border-radius: 0;
    }
    
    /* Анимация бургер-меню */
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Success Modal for Newsletter Subscription */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-modal {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.8) translateY(30px);
    transition: all 0.3s ease;
    position: relative;
}

.success-modal-overlay.active .success-modal {
    transform: scale(1) translateY(0);
}

.success-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #6c757d;
    font-size: 1.2rem;
}

.success-modal-close:hover {
    background: #f8f9fa;
    color: #495057;
    transform: scale(1.1);
}

.success-modal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--aqua), var(--orange-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.success-modal h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.success-modal p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-modal-button {
    background: linear-gradient(135deg, var(--aqua), var(--orange-accent));
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.success-modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
}
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero h1 {
        font-size: 2rem;
    }


@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 2rem 1.5rem;
    }
    
    .category-icon {
        font-size: 2.5rem;
    }
    
    .tech-article {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .tech-article:nth-child(even) .tech-content,
    .tech-article:nth-child(even) .tech-visual {
        order: unset;
    }
    
    .placeholder-diagram {
        padding: 2rem 1.5rem;
        min-height: 150px;
        font-size: 1rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        min-width: 80px;
        height: 80px;
        font-size: 0.8rem;
        padding: 1rem;
    }
    
    .timeline-content {
        margin: 0;
        flex: 1;
    }
    
    .future-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .future-card {
        padding: 2rem 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid,
    .reviews-grid,
    .team-grid,
    .stats-grid,
    .testimonials-grid,
    .tech-grid,
    .articles-grid,
    .contact-cards,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .featured-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .feature-card,
    .review-card,
    .team-member,
    .contact-form {
        padding: 1.5rem;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-popup,
    .newsletter {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .page-header {
        background: none;
        color: black;
    }
}

/* About Page Enhancements */
.mission-description {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.mission-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.highlight-item:hover {
    transform: translateY(-2px);
}

.highlight-item img {
    flex-shrink: 0;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.value-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-item ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    text-align: left;
}

.value-item li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.value-item li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Enhanced Statistics Section */
.statistics {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

.statistics .section-header h2,
.statistics .section-header p {
    color: white;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.stat-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.stat-icon img {
    filter: brightness(0) invert(1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}

/* Enhanced Testimonials Section */
.testimonials {
    background: #f8f9fa;
    padding: 4rem 0;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.testimonial-quote {
    position: absolute;
    top: -16px;
    left: 2rem;
    background: white;
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #495057;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.author-info strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.author-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

/* Removed duplicate testimonials-cta styles - using enhanced version below */

/* Responsive Adjustments for About Page */
@media (max-width: 768px) {
    .mission-highlights {
        grid-template-columns: 1fr;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .testimonials-cta {
        padding: 1.5rem;
    }
}

/* Article Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(50px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.5rem 0;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #6c757d;
}

.modal-close:hover {
    background: #f8f9fa;
    color: #495057;
    transform: scale(1.1);
}

.modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 0 2rem 2rem;
}

.modal-article .article-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e9ecef;
}

.modal-article .article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.modal-article .category {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.modal-article .read-time {
    background: #f8f9fa;
    color: #6c757d;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.modal-article h1 {
    font-size: 2rem;
    color: #212529;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.modal-article .article-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.modal-article .tag {
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.article-body h3 {
    color: #495057;
    margin: 1.5rem 0 1rem;
    font-size: 1.25rem;
}

.article-body ul, .article-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body blockquote {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.modal-navigation {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    gap: 1rem;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--aqua);
    background: white;
    color: var(--aqua);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    text-decoration: none;
    min-width: 0;
    flex: 1;
    max-width: 200px;
}

.nav-btn:hover {
    background: var(--aqua);
    color: white;
    transform: translateY(-2px);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.nav-btn:disabled:hover {
    background: white;
    color: var(--aqua);
    transform: none;
}

.prev-btn {
    justify-content: flex-start;
}

.next-btn {
    justify-content: flex-end;
}

.nav-btn span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Modal Responsive Design */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
        margin: 1rem;
    }
    
    .modal-content {
        padding: 0 1rem 1rem;
    }
    
    .modal-article h1 {
        font-size: 1.5rem;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .modal-navigation {
        padding: 1rem;
        flex-direction: column;
    }
    
    .nav-btn {
        max-width: none;
        justify-content: center;
    }
    
    .modal-article .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .modal-container {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .modal-header {
        padding: 0.75rem 1rem 0;
    }
    
    .modal-content {
        padding: 0 1rem 1rem;
    }
    
    .modal-navigation {
        padding: 0.75rem 1rem;
    }
}

/* Enhanced Statistics Section with Modern Design */
.statistics {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.statistics .container {
    position: relative;
    z-index: 2;
}

.statistics .section-header h2,
.statistics .section-header p {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.stat-glow {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 2s infinite;
}

.stat-glow::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, rgba(255,255,255,0.3), transparent, rgba(255,255,255,0.3));
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stat-icon img {
    filter: brightness(0) invert(1);
    width: 40px;
    height: 40px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

.stat-decoration {
    position: absolute;
    bottom: 10px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    opacity: 0.5;
}

/* Enhanced Testimonials Section with Slider */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    padding: 0 1rem;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 500%;
}

.testimonial-card {
    width: 20%;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid rgba(0,123,255,0.1);
    flex-shrink: 0;
    box-sizing: border-box;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.testimonial-quote-icon {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.testimonial-quote-icon img {
     
}

.testimonial-rating .stars {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating img {
    filter: hue-rotate(45deg) saturate(1.5);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #495057;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-placeholder {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.author-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.95rem;
}

.testimonial-decoration {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.decoration-dots {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(0,123,255,0.2));
    border-radius: 50%;
    position: relative;
}

.decoration-dots::before,
.decoration-dots::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(0,123,255,0.1);
    border-radius: 50%;
}

.decoration-dots::before {
    top: -10px;
    left: -10px;
}

.decoration-dots::after {
    bottom: -10px;
    right: -10px;
}

.testimonials-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-nav-btn {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.testimonial-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.testimonials-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0,123,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Enhanced CTA Section */
.testimonials-cta {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    color: white;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #0056b3;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: rgb(120, 136, 227);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary:hover {
    background: rgb(120, 136, 227);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: black;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
        padding-left: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .testimonials-navigation {
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}

/* Certificates and Awards Section */
.certificates-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.certificates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23007bff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23007bff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.certificate-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,123,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,123,255,0.1);
}

.certificate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #28a745, #FFD700, #6f42c1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.certificate-card:hover::before {
    transform: scaleX(1);
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,123,255,0.15);
}

.certificate-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(0,123,255,0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.certificate-content h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.certificate-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
}

.certificate-date {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 auto;
    display: block;
    text-align: center;
    width: fit-content;
}

.certificates-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0,123,255,0.1);
    position: relative;
}

.cert-stat {
    text-align: center;
    position: relative;
}

.cert-stat::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(0,123,255,0.2);
}

.cert-stat:last-child::after {
    display: none;
}

.cert-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cert-stat-label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

/* Responsive Design for Certificates */
@media (max-width: 768px) {
    .certificates-section {
        padding: 3rem 0;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .certificate-card {
        padding: 1.5rem;
    }
    
    .certificate-content h3 {
        font-size: 1.1rem;
    }
    
    .certificates-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 1rem;
        gap: 1.5rem;
    }
    
    .cert-stat-number {
        font-size: 2rem;
    }
    
    .cert-stat::after {
        display: none;
    }
}

/* Interesting Facts Section */
.interesting-facts {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.interesting-facts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23007bff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.fact-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,123,255,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,123,255,0.1);
    text-align: center;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #28a745, #FFD700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.fact-card:hover::before {
    transform: scaleX(1);
}

.fact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,123,255,0.15);
}

.fact-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(0,123,255,0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.fact-card:hover .fact-icon {
    background: rgba(0,123,255,0.2);
    transform: scale(1.1);
}

.fact-icon img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.fact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fact-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.fact-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.facts-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,123,255,0.1);
    position: relative;
    z-index: 1;
}

.facts-cta h3 {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.facts-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Facts Section */
@media (max-width: 768px) {
    .interesting-facts {
        padding: 3rem 0;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .fact-card {
        padding: 2rem;
    }
    
    .fact-number {
        font-size: 2.5rem;
    }
    
    .fact-card h3 {
        font-size: 1.2rem;
    }
    
    .facts-cta {
        padding: 2rem 1.5rem;
    }
    
    .facts-cta h3 {
        font-size: 1.5rem;
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-details {
    opacity: 1;
    max-height: none;
    overflow: visible;
    transition: all 0.3s ease;
}

.service-details ul {
    list-style: none;
    padding: 0;
}

.service-details li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Team Contacts Section */
.team-contacts-section {
    padding: 80px 0;
    background: white;
}

.team-contacts-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.specialists-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #495057;
}

.tab-btn.active,
.tab-btn:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.specialist-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.specialist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.specialist-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.specialist-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.specialist-title {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.specialist-experience {
    color: #666;
    margin-bottom: 1.5rem;
}

.specialist-contacts {
    margin-bottom: 1.5rem;
}

.contact-link {
    display: block;
    color: #495057;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #007bff;
}

.specialist-specialization {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.specialist-specialization span {
    background: #e9ecef;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #495057;
}

/* Social Media Section */
.social-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.social-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.social-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.social-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.social-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.05);
}

.social-stats {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Office Hours Section */
.office-hours-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.office-hours-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.hours-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hours-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item.weekend .time {
    color: #dc3545;
    font-weight: 600;
}

.day {
    font-weight: 600;
    color: #495057;
}

.time {
    color: #28a745;
    font-weight: 600;
}

.note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.availability-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.availability-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.special-services {
    display: grid;
    gap: 1rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.service-name {
    font-weight: 600;
    color: #495057;
}

.service-time {
    color: #007bff;
    font-weight: 600;
}

/* ===== LEGAL PAGES STYLES ===== */

/* Legal Page Headers */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Legal Content Sections */
.privacy-content,
.cookie-content-section,
.terms-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.last-updated {
    background: #e3f2fd;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #2196f3;
}

.last-updated p {
    margin: 0;
    color: #1565c0;
    font-size: 0.95rem;
}

/* Policy Sections */
.policy-section,
.terms-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.policy-section:last-child,
.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2,
.terms-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
    display: inline-block;
}

.policy-section h3,
.terms-section h3 {
    color: #34495e;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.policy-section p,
.terms-section p {
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #555;
    text-align: justify;
}

.policy-section ul,
.terms-section ul {
    margin: 1.5rem 0;
    padding-left: 0;
}

.policy-section li,
.terms-section li {
    list-style: none;
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #555;
}

.policy-section li::before,
.terms-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.1rem;
}

.policy-section strong,
.terms-section strong {
    color: #2c3e50;
    font-weight: 600;
}

.policy-section a,
.terms-section a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.policy-section a:hover,
.terms-section a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

/* Cookie Tables */
.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.cookie-table th {
    background: #3498db;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.cookie-table tr:nth-child(even) {
    background: #f8f9fa;
}

.cookie-table tr:hover {
    background: #e3f2fd;
}

.cookie-table td:first-child {
    font-weight: 600;
    color: #2c3e50;
}

/* Contact Information Boxes */
.contact-info-box {
    background: #f1f8ff;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.contact-info-box h3 {
    color: #1565c0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
}

.contact-info-box a {
    color: #1976d2;
    font-weight: 600;
}

/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1.5rem 0;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    line-height: 1.5;
}

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

.cookie-content a:hover {
    color: #90caf9;
}

#accept-cookies {
    background: #4caf50;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#accept-cookies:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .content-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .policy-section h2,
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3,
    .terms-section h3 {
        font-size: 1.2rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-content p {
        font-size: 0.95rem;
    }
    
    #accept-cookies {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .content-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .policy-section h2,
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.85rem;
    }
}

/* Company History Styles */
.company-history {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.history-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #2196f3, #64b5f6);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 3rem 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 100px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    flex: 1;
    position: relative;
    border: 1px solid #e3f2fd;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -30px;
    border-right-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -30px;
    border-left-color: white;
}

.timeline-content h3 {
    color: #1976d2;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Our Team Styles */
.our-team {
    padding: 5rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #2196f3;
    font-size: 2.5rem;
    color: #1976d2;
    font-weight: bold;
    overflow: hidden;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-member h3 {
    color: #1976d2;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.member-role {
    color: #2196f3;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.member-expertise span {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1976d2;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #90caf9;
}

/* Company Achievements Styles */
.company-achievements {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
    color: white;
}

.company-achievements .section-header h2,
.company-achievements .section-header p {
    color: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    color: white;
}

.achievement-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.achievement-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.achievement-year {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive Styles for New Sections */
@media (max-width: 768px) {
    .history-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: -90px;
        top: 0;
        min-width: 80px;
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
    
    .timeline-content {
        margin: 0;
        width: 100%;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .company-history,
    .our-team,
    .company-achievements {
        padding: 3rem 0;
    }
}