/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Header and Navigation */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-brand {
    padding: 2px 0;
}

.nav-brand h1 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 0;
}

.nav-brand a {
    display: block;
    line-height: 0;
}

.logo {
    height: 250px;
    width: auto;
    display: block;
    margin: -80px 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #1e3a5f;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #1e3a5f;
    color: white;
}

.btn-primary:hover {
    background-color: #152d4a;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #666;
    border: 2px solid #ddd;
}

.btn-outline:hover {
    background-color: #f8f9fa;
    border-color: #2c3e50;
    color: #2c3e50;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    background-image: linear-gradient(to bottom, rgba(0, 30, 60, 0.55) 0%, rgba(0, 30, 60, 0.65) 100%), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-content .btn {
    font-size: 1.1rem;
    padding: 14px 32px;
}

.hero-content .btn-primary {
    background-color: #1e3a5f;
    color: #ffffff;
    border: none;
}

.hero-content .btn-primary:hover {
    background-color: #152d4a;
}

/* Features Section */
.services-overview {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-overview h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    text-align: left;
}

.service-item h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.service-item p {
    color: #555;
    line-height: 1.7;
}

/* Value Proposition Section */
.value-proposition {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.value-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.value-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.value-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Who We Serve Section */
.who-we-serve {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.who-we-serve h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
}

.client-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.client-type {
    background-color: #ffffff;
    padding: 1.25rem 1.5rem;
    border-radius: 5px;
    color: #2c3e50;
    font-weight: 500;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.client-type:hover {
    border-color: #2c3e50;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.1);
}

/* Coverage Section */
.coverage {
    padding: 60px 0;
    background-color: #ffffff;
}

.coverage h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.coverage-text {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-item {
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.cta-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-item p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.cta-highlight {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.cta-highlight h3,
.cta-highlight p {
    color: #ffffff;
}

.cta-highlight .btn {
    margin-top: 0.5rem;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-content .btn {
    font-size: 1.1rem;
    padding: 14px 32px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    background-image: linear-gradient(to bottom, rgba(0, 30, 60, 0.6) 0%, rgba(0, 30, 60, 0.75) 100%), url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Content Sections */
.about-content,
.services-content,
.process-content,
.contact-content {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.content-main h2 {
    margin-top: 3rem;
    margin-bottom: 1.25rem;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
}

/* Stats Card */
.stats-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.stats-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.stat-label-single {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

.experience-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.experience-list li {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    padding-left: 1.25rem;
    position: relative;
}

.experience-list li:last-child {
    margin-bottom: 0;
}

.experience-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-text {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.3;
    font-weight: 600;
}

.service-summary {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e9ecef;
}

.service-details {
    flex-grow: 1;
}

.service-details h4 {
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-details ul {
    margin: 0;
    padding-left: 1.25rem;
    list-style-type: disc;
    list-style-position: outside;
}

.service-details li {
    margin-bottom: 0.65rem;
    color: #555;
    line-height: 1.6;
    padding-left: 0.5rem;
}

.service-details li:last-child {
    margin-bottom: 0;
}

/* Additional Services */
.additional-services {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px solid #e9ecef;
}

.additional-services h2 {
    text-align: center;
    font-size: 1.5rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.additional-item {
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    height: 100%;
}

.additional-item h4 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.additional-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Process Steps */
.process-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    margin-top: 3rem;
}

.step-item {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e9ecef;
    align-items: start;
}

.step-item:last-child {
    border-bottom: none;
}

.step-image {
    width: 100%;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.step-item:hover .step-image img {
    transform: scale(1.05);
}

.step-details {
    display: flex;
    gap: 2rem;
}

.step-number {
    background-color: #1e3a5f;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.step-content ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.step-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Process Benefits */
.process-benefits {
    margin-top: 4rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.benefit-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.response-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.response-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand p {
    text-align: center;
    margin: 0;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #bdc3c7;
    margin: 0;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 0.75rem;
    background-color: #2c3e50;
    padding: 10px;
    border-radius: 4px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .logo {
        height: 42px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .step-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .step-image {
        height: 220px;
    }
    
    .step-details {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-number {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        height: 38px;
    }
    
    .nav {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .features,
    .about-preview,
    .about-content,
    .services-content,
    .process-content,
    .contact-content {
        padding: 40px 0;
    }
    
    .footer-logo {
        height: 36px;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
        display: flex;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #27ae60;
}

/* Loading Button State */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Accessibility Improvements */
.nav-link:focus,
.btn:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid #2c3e50;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .nav-toggle,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* Team Section / Why Work With Us */
.team-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.team-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.why-work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-work-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.why-work-item h4 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.why-work-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

/* Representative Corporate Engagements Section */
.engagements-section {
    padding: 50px 0;
    background-color: #ffffff;
    border-top: 1px solid #e9ecef;
}

.engagements-section h3 {
    text-align: center;
    font-size: 1.3rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.engagements-section p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* Form Status Messages */
.form-status {
    margin: 1.5rem 0;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-size: 1rem;
    display: none;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-status.loading {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
    display: block;
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.3rem;
    color: #1e3a5f;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.thank-you-details {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 60px 0;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-message {
        font-size: 1.1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Client Logo Slider Section */
.clients-section {
    padding: 60px 0;
    background-color: #f7f9fb;
    overflow: hidden;
}

.clients-heading {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 3rem;
    text-transform: none;
}

.clients-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex-shrink: 0;
    width: 140px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.client-logo img[alt="KEI Industries"],
.client-logo img[alt="Niko Industries"],
.client-logo img[alt="Admiral Marine Services"] {
    max-height: 80px;
    height: 80px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .clients-section {
        padding: 40px 0;
    }
    
    .clients-heading {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .clients-track {
        gap: 60px;
        animation: scroll 30s linear infinite;
    }
    
    .client-logo {
        width: 100px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .clients-track {
        gap: 40px;
        animation: scroll 25s linear infinite;
    }
    
    .client-logo {
        width: 80px;
        height: 40px;
    }
}
