/* Reset and Base Styles */
.section-divider {
    border: none;
    height: 2px;
    background-color: #005DA4;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background-color: #1a365d;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.circle-logo {
    background: #d7262d;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    text-align: center;
    line-height: 1;
    text-transform: lowercase;
    letter-spacing: -0.5px;
    box-shadow: 0 2px 8px rgba(215, 38, 45, 0.3);
    transition: all 0.3s ease;
}

.circle-logo:hover {
    box-shadow: 0 4px 15px rgba(215, 38, 45, 0.5);
    transform: rotate(5deg);
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 900;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
    transition: color 0.3s ease;
}

.logo:hover .logo-text {
    color: #f8f9fa;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    ;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #fca5a5;
}

.nav-menu a.active {
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;

}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #dc2626;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}


.btn:hover {
    background-color: #b91c1c;
}



.btn-secondary:hover {
    background-color: white;
    color: #dc2626;
}

/* Main Content */
.main-content {
    padding: 1rem 0;
}

.section {
    margin-bottom: 0rem;
}

#sectors {
    margin-top: -2rem;
}

.section h2 {
    font-size: 3.0rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a365d;
    font-weight: 800;
}



.section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: #dc2626;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Sectors Grid */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.sector-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.sector-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #dc3545;
}

.sector-box:hover h3 {
    color: #dc3545;
}

.sector-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.sector-box:hover .sector-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.sector-box h3 {
    color: #005DA4;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 1.5rem;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

/* Sectors CTA Button */
.sectors-cta {
    text-align: center;
    margin-top: 3rem;
}

.sectors-explore-btn {
    background-color: #dc3545;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #dc3545;
}

.sectors-explore-btn:hover {
    background-color: #003777;
    border-color: #003777;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 93, 164, 0.3);
}

/* Process Section */
.process-section {
    background: #f8f9fa;
    padding: 0rem 0;
    width: 100%;
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 93, 164, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.process-section .section-wrapper {
    max-width: 1400px;
    margin: 0px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.process-section h2 {
    text-align: center;
    font-size: 3.8rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: -1px;
    line-height: 1.1;
}

.process-section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #005DA4 20%, #005DA4 80%, transparent 100%);
    border-radius: 2px;
}

.process-container {
    display: grid;
    gap: 2.5rem;
    margin-top: 5rem;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-item {
    display: block;
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 24px;
    padding: 2rem;
    box-shadow:
        0 4px 20px rgba(0, 93, 164, 0.08),
        0 1px 3px rgba(0, 93, 164, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 93, 164, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.process-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF6B35 0%, #dc2626 50%, #005DA4 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.process-item:nth-child(even)::before {
    background: linear-gradient(90deg, #005DA4 0%, #1a365d 50%, #FF6B35 100%);
}

.process-item:hover {
    transform: translateY(-12px);
    box-shadow:
        0 20px 50px rgba(0, 93, 164, 0.15),
        0 8px 25px rgba(0, 93, 164, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(255, 107, 53, 0.3);
}

.process-item:hover::before {
    transform: scaleX(1);
}

.process-item:nth-child(1) {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafe 100%);
}

.process-item:nth-child(2) {
    background: linear-gradient(145deg, #fefefe 0%, #f0f7ff 100%);
}

.process-item:nth-child(3) {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafe 100%);
}

.process-item:nth-child(4) {
    background: linear-gradient(145deg, #fefefe 0%, #f0f7ff 100%);
}

.process-item:nth-child(5) {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafe 100%);
}

.process-content {
    text-align: center;
    position: relative;
}

.process-content h3 {
    color: #1a365d;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.process-content h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #FF6B35;
    border-radius: 2px;
}

.process-item:nth-child(even) .process-content h3 {
    color: #005DA4;
}

.process-item:nth-child(even) .process-content h3::after {
    background: #005DA4;
}

.process-content p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-item:nth-child(1) .process-content h3 {
    color: #dc2626;
}

.process-item:nth-child(1) .process-content h3::after {
    background: #dc2626;
}

.process-item:nth-child(3) .process-content h3 {
    color: #059669;
}

.process-item:nth-child(3) .process-content h3::after {
    background: #059669;
}

.process-item:nth-child(5) .process-content h3 {
    color: #7c3aed;
}

.process-item:nth-child(5) .process-content h3::after {
    background: #7c3aed;
}

.process-quote {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem 1.5rem;
    background: linear-gradient(135deg, #005DA4, #1a365d);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 93, 164, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-quote::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 15px 15px;
    animation: float 20s infinite linear;
    opacity: 0.2;
}

.process-quote p {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.process-quote span {
    color: #FF6B35;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #dc2626;
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.contact-form {
    max-width: 100%;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
}

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

/* Footer */
.footer {
    background-color: #1d3557;
    color: white;
    padding: 3rem 0 0 0;
    margin-top: 4rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 50% 10% 20% 20%;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem 2rem;
    align-items: start;
}

/* Footer Section 1 - Logo & About */
.footer-section-logo {

    flex-direction: column;
    gap: 0rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0rem;
}

.footer-logo .circle-logo {
    background: #d7262d;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    text-align: center;
    line-height: 1;
    text-transform: lowercase;
    letter-spacing: -0.5px;
    box-shadow: 0 2px 8px rgba(215, 38, 45, 0.3);
}

.footer-logo-text {
    font-size: 1.1rem;
    font-weight: 900;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.footer-contact {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #e2e8f0;
}

.footer-contact strong {
    color: white;
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
}

.footer-contact strong:first-child {
    margin-top: 0;
}

/* Footer Sections 2, 3, 4 */
.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d7262d;
    display: inline-block;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #d7262d;
    text-decoration: underline;
}

/* Newsletter Section */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.newsletter-input {
    padding: 0.7rem;
    border: 1px solid #64748b;
    border-radius: 5px;
    background-color: #334155;
    color: white;
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-input:focus {
    outline: none;
    border-color: #d7262d;
    background-color: #475569;
}

.newsletter-btn {
    padding: 0.7rem 1rem;
    background-color: #d7262d;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #b91c1c;
}

/* Footer Contact Info Section */
.footer-contact-info p {
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-contact-info p:last-child {
    margin-bottom: 0;
}

.footer-contact-info strong {
    color: white;
    display: block;
    margin-bottom: 0.3rem;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #0f1419;
    padding: 1rem 0;
    text-align: center;
    border-top: 1px solid #334155;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #d7262d;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem 2rem 1rem;
    }

    .footer-section-logo {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-contact {
        text-align: left;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3 {
        text-align: center;
    }

    .footer-section ul {
        text-align: left;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 0 0;
    }

    .footer-main {
        padding: 0 1rem 1.5rem 1rem;
        gap: 2rem;
    }

    .footer-logo .circle-logo {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .footer-logo-text {
        font-size: 0.9rem;
    }

    .footer-description,
    .footer-contact {
        font-size: 0.85rem;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        gap: 0.6rem;
    }
    
    .circle-logo {
        width: 45px;
        height: 45px;
        font-size: 0.95rem;
        border-width: 2px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .footer-logo .circle-logo {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
        border-width: 2px;
    }
    
    .footer-logo-text {
        font-size: 0.95rem;
    }

    .process-section {
        padding: 4rem 0;
    }

    .process-section .section-wrapper {
        padding: 0 1rem;
    }

    .process-section h2 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        letter-spacing: -0.5px;
    }

    .process-section h2::before {
        width: 60px;
        height: 4px;
    }

    .process-section h2::after {
        width: 100px;
    }

    .process-container {
        gap: 2rem;
        margin-top: 3rem;
    }

    .process-item {
        padding: 3.5rem 2rem;
        border-radius: 20px;
    }

    .process-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .process-content h3::after {
        width: 40px;
        height: 2px;
        bottom: -10px;
    }

    .process-content p {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 100%;
    }

    .process-quote {
        margin-top: 2rem;
        padding: 2rem 2rem;
        border-radius: 10px;
    }

    .process-quote::before {
        width: 200px;
        height: 200px;
        top: -50px;
        right: -50px;
    }

    .process-quote::after {
        font-size: 4rem;
        top: 1rem;
        left: 1.5rem;
    }

    .process-quote p {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .process-quote span {
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        height: 100vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section h2 {
        font-size: 3.8rem;
        font-weight: 800;
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .sector-image {
        height: 150px;
    }

    .sector-box h3 {
        font-size: 1rem;
        padding: 1rem;
    }

    .sectors-cta {
        margin-top: 2rem;
    }

    .sectors-explore-btn {
        padding: 0.875rem 1.75rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-container {
        order: 1;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sector-image {
        height: 180px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

/* Sectors Page Styles */
.sectors-hero {
    background: linear-gradient(135deg, #005DA4, #1a365d);
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.sectors-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.sectors-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

.sectors-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.sectors-hero h1 {
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.sectors-hero .full-width-paragraph {
    color: white;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.full-width-paragraph {
    max-width: none !important;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0 4rem;
    box-sizing: border-box;
    text-align: center !important;
    display: block;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sector-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e5e7eb;
    cursor: pointer;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #005DA4;
}

.sector-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border: 4px solid #b91c1c;
}

.sector-card h3 {
    color: #005DA4;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.sector-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cta-section {
    background: #1a365d;
    border-radius: 12px;
    margin-top: 4rem;
}

.cta-content {
    text-align: center;
    padding: 3rem 2rem;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.cta-content p {
    color: white;
    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;
}

/* Compact CTA Section Styles */
.cta-section-compact {
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 2rem;
    padding: 0rem 0rem;
}

.cta-content-compact {
    text-align: center;
}

.cta-content-compact h2 {
    color: #1a365d;
    margin-bottom: 3rem;
    font-size: 3rem;
    font-weight: 800;
}

.cta-content-compact .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive adjustments for sectors page */
@media (max-width: 768px) {
    .sectors-hero {
        height: 50vh;
        min-height: 300px;
    }

    .sector-card {
        padding: 1.5rem;
    }

    .sector-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }

    .sector-card h3 {
        font-size: 1.1rem;
    }

    .sector-card p {
        font-size: 0.9rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }


}

@media (max-width: 480px) {
    .sector-card {
        padding: 1rem;
    }

    .sector-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }

    .sector-card h3 {
        font-size: 1rem;
    }

    .sector-card p {
        font-size: 0.85rem;
    }

    .cta-content {
        padding: 2rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

/* About Page Styles */
.about-hero {
    background: rgba(13, 12, 61, 1);
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.about-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 2;
}

.about-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.about-hero h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.about-section {
    padding: 4rem 0;
    background: white;
    width: 100vw;
    margin-left: calc(-50vw + 50%);

}

.about-content {
    max-width: 100%;
    margin: 0;
    text-align: center;
    width: 100%;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.team-section {
    background: #f8f9fa;
    padding: 2rem 0;
    margin: 0px;
}

.team-section h2 {
    color: #1a365d;
    margin-bottom: 2rem;
    font-weight: 800;
    font-size: 3.0rem;
}

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

.team-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2c3e50;
    font-weight: 400;
}

.differentiators-section {
    padding: 1rem 0;
    background: white;
}

.differentiators-section h2 {
    color: #1a365d;
    margin-bottom: 3rem;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.differentiator-card {
    background: white;
    padding: 1rem 1rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.differentiator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #005DA4, #1a365d);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.differentiator-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #005DA4;
}

.differentiator-card:hover::before {
    transform: scaleX(1);
}

.differentiator-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.differentiator-card:hover .differentiator-icon {
    transform: scale(1.1);
}

.differentiator-card h3 {
    color: #005DA4;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.differentiator-card p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.cta-message {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #005DA4, #1a365d);
    border-radius: 20px;
    margin-top: 3rem;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 93, 164, 0.2);
}

.cta-message p {
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 300px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero h2 {
        font-size: 1.4rem;
    }

    .lead-paragraph {
        font-size: 1.1rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .team-content p {
        font-size: 1rem;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .differentiator-card {
        padding: 2rem 1.5rem;
    }

    .differentiator-icon {
        font-size: 3rem;
    }

    .differentiator-card h3 {
        font-size: 1.2rem;
    }

    .cta-message {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .cta-message p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero h2 {
        font-size: 1.2rem;
    }

    .differentiator-card {
        padding: 1.5rem 1rem;
    }

    .differentiator-icon {
        font-size: 2.5rem;
    }

    .differentiator-card h3 {
        font-size: 1.1rem;
    }

    .cta-message {
        padding: 1.5rem 1rem;
    }

    .cta-message p {
        font-size: 1rem;
    }
}

/* Recruitment Services Section Styles */
.recruitment-services-section {
    background-color: #f7f9fa;
    padding: 4rem 0;
    margin: 3rem 0;
    width: 100%;
}

.recruitment-services-section h2 {
    color: #005DA4;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: left;
}

.recruitment-services-content {
    max-width: 100%;
}

.service-item {
    margin-bottom: 3rem;
    padding: 0;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item h3 {
    color: #005DA4;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: left;
}

.service-item p {
    color: #000;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

/* Responsive adjustments for recruitment services */
@media (max-width: 768px) {
    .recruitment-services-section {
        padding: 3rem 0;
        margin: 2rem 0;
    }

    .recruitment-services-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .service-item {
        margin-bottom: 2rem;
    }

    .service-item h3 {
        font-size: 1.3rem;
    }

    .service-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .recruitment-services-section {
        padding: 2rem 0;
        margin: 1.5rem 0;
    }

    .recruitment-services-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .service-item {
        margin-bottom: 1.5rem;
    }

    .service-item h3 {
        font-size: 1.2rem;
    }

    .service-item p {
        font-size: 0.95rem;
    }
}

/* Support Services Section Styles */
.support-services-section {
    padding: 1rem 0;
    background: #f8fafc;
}

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

/* Responsive adjustments for support services */
@media (max-width: 768px) {
    .support-services-section {
        padding: 3rem 0;
    }

    .support-services-section .services-header h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .support-services-section .service-item {
        margin-bottom: 2rem;
    }

    .support-services-section .service-item h3 {
        font-size: 1.3rem;
    }

    .support-services-section .service-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .support-services-section {
        padding: 2rem 0;
    }

    .support-services-section .services-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .support-services-section .service-item {
        margin-bottom: 1.5rem;
    }

    .support-services-section .service-item h3 {
        font-size: 1.2rem;
    }

    .support-services-section .service-item p {
        font-size: 0.95rem;
    }
}
}

.addon-service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 93, 164, 0.1);
    border: 1px solid #e1e8ed;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.addon-service-card h3 {
    color: #005DA4;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.addon-service-card p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for addon services */
@media (max-width: 768px) {
    .addon-services-section {
        padding: 3rem 0;
        margin: 2rem 0;
    }

    .addon-services-section h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .addon-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding-left: 40px;
        padding-right: 40px;
    }

    .addon-service-card {
        padding: 1.5rem;
    }

    .addon-service-card h3 {
        font-size: 1.2rem;
    }

    .addon-service-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .addon-services-section {
        padding: 2rem 0;
        margin: 1.5rem 0;
    }

    .addon-services-section h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .addon-service-card {
        padding: 1.25rem;
    }

    .addon-service-card h3 {
        font-size: 1.1rem;
    }

    .addon-service-card p {
        font-size: 0.9rem;
    }

    .addon-services-grid {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Coming Soon Section Styles */
.coming-soon-section {
    padding: 4rem 0;
    margin: 3rem 0;
    text-align: center;
    background-color: white;
}

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

.coming-soon-content h2 {
    color: #005DA4;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.coming-soon-content p {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h3 {
    color: #005DA4;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Features Section Styles */
.features-section {
    padding: 2rem 0;
    background-color: #f7f9fa;
    margin: 0;
}

.features-section-heading {
    color: rgb(26, 54, 93);
    font-size: 3.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-block {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(185, 28, 28, 0.3);
    border: 2px solid #b91c1c;
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
}

.feature-block:hover .feature-icon svg {
    stroke: #b91c1c;
}

.feature-block h3 {
    color: #005DA4;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-block p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Responsive adjustments for features */
@media (max-width: 768px) {
    .features-section {
        padding: 3rem 0;
    }

    .features-section-heading {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }

    .feature-block {
        padding: 1.5rem;
    }

    .feature-block h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .features-section-heading {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-block {
        padding: 1.25rem;
    }

    .feature-block h3 {
        font-size: 1.2rem;
    }

    .feature-icon svg {
        width: 40px;
        height: 40px;
    }
}

/* Responsive adjustments for coming soon */
@media (max-width: 768px) {
    .coming-soon-section {
        padding: 3rem 0;
        margin: 2rem 0;
    }

    .coming-soon-content h2 {
        font-size: 2rem;
    }

    .coming-soon-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .coming-soon-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-section {
        padding: 2rem 0;
        margin: 1.5rem 0;
    }

    .coming-soon-content h2 {
        font-size: 1.8rem;
    }

    .coming-soon-content p {
        font-size: 1rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-item h3 {
        font-size: 1.1rem;
    }
}

/* Services Page Professional Styles */
.services-hero {
    background: linear-gradient(135deg, #1a365d 0%, #005DA4 100%);
    height: 65vh;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.services-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: white;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.services-main-section {
    padding: 1rem 0;
    background: white;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    color: #1a365d;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.services-description {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services List Styles */
.services-list {
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-item {
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-item:hover {
    padding-left: 1rem;
    background-color: rgba(0, 93, 164, 0.02);
    border-radius: 8px;
    border-bottom-color: #005DA4;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-header .service-icon {
    font-size: 2rem;
    color: #005DA4;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 93, 164, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-item:hover .service-header .service-icon {
    background-color: #005DA4;
    color: white;
    transform: scale(1.1);
}

.service-header h3 {
    color: #005DA4;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-item:hover .service-header h3 {
    color: #dc2626;
}

.service-item p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    margin-left: 3rem;
    font-weight: 400;
    text-align: left;
    transition: color 0.3s ease;
}

.service-item:hover p {
    color: #1a365d;
}

.addon-services-enhanced {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.addon-header {
    text-align: center;
    margin-bottom: 4rem;
}

.addon-header h2 {
    color: #005DA4;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.addon-description {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.addon-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 93, 164, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 93, 164, 0.15);
    border-color: #dc2626;
}

.addon-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.addon-card h3 {
    color: #005DA4;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.addon-card p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.achievements-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a365d 0%, #005DA4 100%);
    margin: 3rem 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.achievements-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.achievements-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.achievements-content h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.achievements-content p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.statistics-showcase {
    padding: 4rem 0;
    background: white;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafe 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 93, 164, 0.08);
    border: 1px solid rgba(0, 93, 164, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 93, 164, 0.15);
    border-color: #dc2626;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    color: #005DA4;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.services-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cta-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    color: #005DA4;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-container p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive adjustments for services page */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .services-header h2,
    .addon-header h2 {
        font-size: 2.2rem;
    }

    .services-description,
    .addon-description {
        font-size: 1.1rem;
    }

    .service-item {
        margin-bottom: 2.5rem;
        padding: 1.5rem 0;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .service-header .service-icon {
        font-size: 1.8rem;
        width: 35px;
        height: 35px;
    }

    .service-header h3 {
        font-size: 1.2rem;
    }

    .service-item p {
        margin-left: 0;
        font-size: 1rem;
    }

    .service-item:hover {
        padding-left: 0.5rem;
    }

    .addon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .statistics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

    .achievements-content h2 {
        font-size: 2rem;
    }

    .achievements-content p {
        font-size: 1.1rem;
    }

    .cta-container h2 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        height: 50vh;
        min-height: 350px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-header h2,
    .addon-header h2 {
        font-size: 1.8rem;
    }

    .services-description,
    .addon-description {
        font-size: 1rem;
    }

    .service-item {
        margin-bottom: 2rem;
        padding: 1rem 0;
    }

    .service-header .service-icon {
        font-size: 1.5rem;
        width: 30px;
        height: 30px;
    }

    .service-header h3 {
        font-size: 1.1rem;
    }

    .service-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

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

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

    .stat-card {
        padding: 1.5rem 1rem;
    }

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

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

    .achievements-content h2 {
        font-size: 1.8rem;
    }

    .achievements-content p {
        font-size: 1rem;
    }

    .cta-container h2 {
        font-size: 1.8rem;
    }

    .cta-container p {
        font-size: 1rem;
    }
}

/* Achievements Section Styles */
.achievements-section {
    padding: 1rem 0;
    margin: 3rem 0;
    text-align: center;
    background-color: #1d3557;
}

.achievements-section h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;

    letter-spacing: 1px;
}

.achievements-section p {
    color: #dc2626;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

/* Responsive adjustments for achievements */
@media (max-width: 768px) {
    .achievements-section {
        padding: 3rem 0;
        margin: 2rem 0;
    }

    .achievements-section h2 {
        font-size: 2rem;
    }

    .achievements-section p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .achievements-section {
        padding: 2rem 0;
        margin: 1.5rem 0;
    }

    .achievements-section h2 {
        font-size: 1.8rem;
    }

    .achievements-section p {
        font-size: 1rem;
    }
}

/* Legal Pages Styles */
.legal-hero {
    background: linear-gradient(135deg, #1a365d 0%, #005DA4 100%);
    height: 50vh;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

.legal-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.legal-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.legal-hero .hero-subtitle {
    font-size: 1.2rem;
    color: white;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.legal-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: #1a365d;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
    position: relative;
    padding-bottom: 0.5rem;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #dc2626;
    border-radius: 2px;
}

.legal-section p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: left;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.legal-list li {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.legal-list li::before {
    content: '•';
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.contact-details {
    background: white;
    padding: 0rem;

}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details strong {
    color: #1a365d;
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .legal-hero {
        height: 40vh;
        min-height: 300px;
    }

    .legal-hero h1 {
        font-size: 2.2rem;
    }

    .legal-hero .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .legal-content {
        padding: 3rem 0;
    }

    .legal-section {
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .legal-section h2::after {
        width: 50px;
        height: 2px;
    }

    .legal-section p {
        font-size: 0.95rem;
    }

    .legal-list li {
        font-size: 0.95rem;
        padding-left: 1.3rem;
    }

    .contact-details {
        padding: 1.2rem;
        margin: 1.2rem 0;
    }
}

@media (max-width: 480px) {
    .legal-hero h1 {
        font-size: 1.8rem;
    }

    .legal-hero .hero-subtitle {
        font-size: 1rem;
    }

    .legal-content {
        padding: 2rem 0;
    }

    .legal-section {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .legal-section p {
        font-size: 0.9rem;
    }

    .legal-list li {
        font-size: 0.9rem;
        padding-left: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .contact-details {
        padding: 1rem;
        margin: 1rem 0;
    }
}

/* Statistics Section Styles */
.statistics-section {
    background-color: #f7f9fa;
    padding: 0rem 0;
    margin: 1rem 0;
    width: 100%;
    max-width: 100%;
}

.statistics-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.statistic-item {
    text-align: center;
    padding: 1rem;
}

.statistic-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.statistic-value {
    color: #005DA4;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.statistic-label {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive adjustments for statistics */
@media (max-width: 768px) {
    .statistics-section {
        padding: 3rem 0;
        margin: 2rem 0;
    }

    .statistics-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }

    .statistic-icon {
        font-size: 2.5rem;
    }

    .statistic-value {
        font-size: 2rem;
    }

    .statistic-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .statistics-section {
        padding: 2rem 0;
        margin: 1.5rem 0;
    }

    .statistics-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .statistic-icon {
        font-size: 2rem;
    }

    .statistic-value {
        font-size: 1.8rem;
    }

    .statistic-label {
        font-size: 0.95rem;
    }
}