* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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


h1, h2, h3, h4, h5, h6 {
    margin-bottom: 16px;
    line-height: 1.3;
    color: #2c3e50;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.6;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}


.site-header {
    background-color: #2c3e50;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo a {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.main-nav a:hover {
    background-color: #34495e;
    color: #ffffff;
}


.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}


.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-menu ul {
    flex-direction: column;
    padding: 16px 0;
}

.mobile-menu li {
    margin: 0;
    padding: 8px 20px;
    border-bottom: 1px solid #34495e;
}

.mobile-menu a {
    color: #ffffff;
    display: block;
    padding: 8px 0;
}


.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #ffffff;
    text-align: center;
}

.hero-section.compact {
    height: 600px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #ecf0f1;
}


.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    color: #ffffff;
}

.btn-secondary {
    background-color: #e74c3c;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    color: #ffffff;
}

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

.btn-outline:hover {
    background-color: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}


main {
    flex: 1;
}


section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}


.company-overview {
    background-color: #ffffff;
}

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

.overview-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.overview-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    display: block;
}

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


.services-showcase {
    background-color: #f8f9fa;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-title {
    font-size: 1.3rem;
    margin: 20px;
    color: #2c3e50;
}

.service-description {
    margin: 0 20px 20px;
    color: #7f8c8d;
}

.service-features {
    padding: 0 20px;
    margin-bottom: 20px;
}

.service-features span {
    display: inline-block;
    background-color: #ecf0f1;
    color: #2c3e50;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 8px;
    margin-bottom: 8px;
}


.process-showcase {
    background-color: #ffffff;
}

.process-step {
    text-align: center;
    padding: 30px;
}

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

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-description {
    color: #7f8c8d;
}


.testimonials-section {
    background-color: #f8f9fa;
}

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

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

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    text-align: right;
}

.author-name {
    font-weight: 600;
    color: #2c3e50;
    display: block;
}

.author-title {
    color: #7f8c8d;
    font-size: 0.9rem;
}


.cta-section {
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.cta-section h2, .cta-section h3 {
    color: inherit;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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


.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

.footer-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-description {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact a {
    color: #3498db;
    text-decoration: none;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    opacity: 0.8;
}


.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-text h3 {
    color: #ffffff;
    margin-bottom: 5px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}


@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu.show {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .overview-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        flex: 1;
    }
}


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


a:focus, button:focus, input:focus {
    outline: 3px solid #3498db;
    outline-offset: 2px;
}

[class*="text-"] strong {
    color: inherit;
}


@media print {
    .site-header, .cookie-consent-banner, .mobile-menu {
        display: none !important;
    }
    
    body {
        background-color: #ffffff;
        color: #000000;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    a {
        color: #000000;
        text-decoration: underline;
    }
}

/* Additional styles for our-legacy.html and other pages */

/* Company History Section */
.company-history {
    background-color: #ffffff;
    padding: 80px 0;
}

.history-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.history-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.timeline-year {
    background-color: #3498db;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding: 20px;
    border-left: 3px solid #3498db;
    padding-left: 30px;
    margin-left: 10px;
}

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

/* Our Mission Section */
.our-mission {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.mission-text {
    max-width: 600px;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.mission-principles {
    list-style: none;
    padding: 0;
}

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

.mission-principles li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.mission-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

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

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

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-size: cover;
    background-position: center;
    border: 3px solid #3498db;
}

.member-name {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.member-title {
    color: #3498db;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    color: #3498db;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #3498db;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #3498db;
    color: white;
}

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

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

.value-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #3498db;
}

.value-title {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-description {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Additional styles for all HTML files */

/* Careers Section Styles */
.careers-intro {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.career-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #3498db;
}

.benefit-title {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.current-openings {
    background-color: #ffffff;
    padding: 80px 0;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.job-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-header {
    padding: 25px 25px 15px;
    border-bottom: 1px solid #eee;
}

.job-title {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.job-type, .job-location {
    background-color: #3498db;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-content {
    padding: 20px 25px;
}

.job-summary {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.job-details {
    margin-bottom: 25px;
}

.job-details h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.job-responsibilities, .job-requirements {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-responsibilities li, .job-requirements li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.job-responsibilities li:before, .job-requirements li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.job-salary {
    background-color: #e8f4fd;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

.job-apply {
    padding: 20px 25px 25px;
    text-align: center;
}

/* Company Culture Section */
.company-culture {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.culture-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.culture-description {
    max-width: 600px;
}

.culture-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.culture-features {
    list-style: none;
    padding: 0;
}

.culture-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.culture-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.culture-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Employee Testimonials Section */
.employee-testimonials {
    background-color: #ffffff;
    padding: 80px 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

/* Application Process Section */
.application-process {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.process-steps {
    /* display: grid; */
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    /* gap: 30px; */
    margin-top: 40px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

/* Portfolio Sections */
.portfolio-intro {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.portfolio-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.portfolio-showcase {
    background-color: #ffffff;
    padding: 80px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px 25px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-description {
    color: #ecf0f1;
    line-height: 1.5;
    margin-bottom: 15px;
}

.portfolio-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-item {
    background-color: rgba(255,255,255,0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Client Stories Section */
.client-stories {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.story-logo {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.story-title {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.story-industry {
    color: #3498db;
    font-size: 0.9rem;
    font-weight: 500;
}

.story-content {
    padding: 25px;
}

.story-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-results {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    font-weight: 500;
    color: #555;
}

.result-value {
    color: #27ae60;
    font-weight: 600;
}

/* Before & After Section */
.before-after {
    background-color: #ffffff;
    padding: 80px 0;
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.transformation-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.transformation-content {
    position: relative;
    height: 300px;
}

.before-image, .after-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.before-image {
    z-index: 1;
}

.after-image {
    z-index: 2;
}

.image-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.transformation-info {
    padding: 0 25px;
}

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

/* Capabilities Showcase Section */
.capabilities-showcase {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.capabilities-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.capability-showcase-item {
    background-color: white;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.capability-showcase-item:hover {
    transform: translateY(-5px);
}

.capability-showcase-item h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.capability-showcase-item p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.capability-examples {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.example {
    background-color: #e8f4fd;
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Services Detailed Section */
.services-intro {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.services-detailed {
    background-color: #ffffff;
    padding: 80px 0;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    grid-row: 1 / -1;
}

.service-info {
    padding: 25px;
}

.service-title {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.price-label {
    color: #7f8c8d;
    font-size: 0.9rem;
}

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

.price-unit {
    color: #7f8c8d;
    font-size: 1rem;
}

.service-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.service-features li {
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

/* Capabilities Section */
.capabilities-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.capability-item {
    background-color: white;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-5px);
}

.capability-item h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.capability-item p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 0;
}

.capability-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #3498db;
}

/* Materials Section */
.materials-section {
    background-color: #ffffff;
    padding: 80px 0;
}

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

.material-item {
    background-color: #f8f9fa;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.material-item:hover {
    transform: translateY(-5px);
}

.material-item h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.material-item p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 0;
}

.material-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #3498db;
}

/* Chrome Plating Section */
.chrome-plating-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.process-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.process-description {
    max-width: 600px;
}

.process-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.process-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.process-steps {
    background-color: #ffffff;
    padding: 80px 0;
}

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

.step-item {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

/* Electroplating Section */
.electroplating-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.electro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.electro-description {
    max-width: 600px;
}

.electro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.plating-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.option-item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.option-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.option-features li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.option-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.electro-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Surface Finishing Section */
.surface-finishing-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.finishing-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.finishing-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.finishing-description {
    max-width: 600px;
}

.finishing-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.method-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.method-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.method-item h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.method-item p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Quality Assurance Section */
.quality-assurance {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.quality-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.quality-text {
    max-width: 600px;
}

.quality-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.quality-measures {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quality-measures li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.quality-measures li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.quality-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
    padding: 80px 0;
}

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

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e8f4fd;
}

.faq-question {
    background-color: #f8f9fa;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.faq-question:hover {
    background-color: #e8f4fd;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
}

.faq-question span:first-child {
    font-weight: 600;
    color: #2c3e50;
}

.faq-icon {
    font-weight: bold;
    color: #3498db;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
}

.faq-answer {
    background-color: #fafbfc;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.active {
    padding: 25px;
    max-height: 500px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Улучшенные стили для FAQ */
.faq-item.active .faq-question {
    background-color: #3498db;
    color: white;
}

.faq-item.active .faq-question:hover {
    background-color: #2980b9;
}

.faq-item.active .faq-icon {
    color: white;
    transform: rotate(45deg);
}

/* Contact Form Section */
.contact-intro {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #3498db;
}

.contact-title {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2980b9;
}

.contact-hours {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-action {
    text-align: center;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-subtitle {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    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: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 20px;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-top: 2px;
    transition: all 0.3s ease;
    position: relative;
}

input[type="checkbox"]:checked + .checkbox-custom {
    background-color: #3498db;
    border-color: #3498db;
}

input[type="checkbox"]:checked + .checkbox-custom:after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* FAQ Contact Section */
.faq-contact {
    background-color: #ffffff;
    padding: 80px 0;
}

/* Location Section */
.location-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-info {
    max-width: 600px;
}

.location-details {
    margin-bottom: 30px;
}

.location-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.location-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.location-map {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.map-placeholder {
    padding: 40px;
    text-align: center;
    color: #7f8c8d;
}

.map-placeholder p {
    margin-bottom: 10px;
}

.location-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Privacy Content */
.privacy-content {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

.privacy-text {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.privacy-text h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.last-updated {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 40px;
}

/* Cookie Wrapper */
.cookie-wrapper {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.cookie-text h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

/* Refund Content */
.refund-content {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

.refund-text {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.refund-text h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

/* Terms Content */
.terms-content {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

.terms-text {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.terms-text h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .mission-content,
    .culture-content,
    .process-content,
    .electro-content,
    .finishing-content,
    .quality-content,
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        gap: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-year {
        margin-bottom: 15px;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-item {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 200px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .method-list {
        grid-template-columns: 1fr;
    }
    
    .capabilities-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .transformation-item {
        grid-template-columns: 1fr;
    }
    
    .transformation-content {
        height: 200px;
    }
}