/* Base Styles */
:root {
    --primary-color: #004d99;
    --secondary-color: #0073e6;
    --accent-color: #ffc107;
    --dark-color: #222831;
    --light-color: #f8f9fa;
    --text-color: #333;
    --light-text: #666;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style-type: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--light-text);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn.primary {
    background-color: var(--primary-color);
    color: white;
}

.btn.primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.btn.secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn.secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.placeholder-image {
    background-color: #e9ecef;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    color: var(--light-text);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.placeholder-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-height: 400px;
    object-fit: cover;
}

/* Header Styles */
header {
    background-color: var(--dark-color);
    color: white;
    padding: 10px 0;
}

.dark-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-img {
    max-height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background-color: #f5f7fa;
    padding: 50px 0;
}

.hero {
    display: flex;
    align-items: center;
    padding: 20px 0 30px;
    gap: 30px;
}

.hero-content {
    flex: 1;
}

.centered-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
}

/* About Section */
.about-section {
    background-color: white;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

/* Points Section */
.points-section {
    background-color: #f5f7fa;
}

.points-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.points-info {
    flex: 1;
    min-width: 300px;
}

.points-info p {
    margin-bottom: 20px;
}

.requirements {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.requirements h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.requirements ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.requirements ul li:before {
    content: "✓";
    color: var(--success-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.points-table {
    flex: 1;
    min-width: 300px;
}

.points-table h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.table-wrapper {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead th {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
}

tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Jobs Section */
.jobs-section {
    background-color: white;
}

.jobs-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.jobs-info {
    flex: 1;
}

.jobs-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.jobs-info ul {
    margin: 20px 0;
}

.jobs-info ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.jobs-info ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.job-opportunities {
    margin-top: 30px;
    padding: 20px;
    background-color: #f5f7fa;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.job-opportunities p {
    margin-bottom: 15px;
}

.job-opportunities strong {
    color: var(--primary-color);
}

.jobs-image {
    flex: 1;
}

.job-sectors h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.sector-card {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.sector-card .icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sector-card h4 {
    color: var(--primary-color);
}

.jobs-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* FAQ Section */
.faq-section {
    background-color: #f5f7fa;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: rgba(0, 77, 153, 0.05);
}

.accordion-header h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.accordion-icon {
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: 0 20px 20px;
}

.accordion-item.active .accordion-icon .fa-plus:before {
    content: "\f068";
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, #004d99, #0073e6);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-section .btn.primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-section .btn.primary:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.cta-section .btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .btn.secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links-column {
    flex: 1;
    min-width: 150px;
}

.footer-links-column h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-links-column a {
    color: #adb5bd;
    transition: var(--transition);
}

.footer-links-column a:hover {
    color: white;
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-social h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #adb5bd;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 20px 0 40px;
    }

    .centered-title {
        font-size: 2.8rem;
    }

    .hero-content h2 {
        font-size: 1.6rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .about-content {
        flex-direction: column;
    }

    .jobs-content {
        flex-direction: column;
    }

    .language-selector {
        margin-left: 15px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .dark-nav {
        padding: 15px 0;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--dark-color);
        padding: 20px;
        z-index: 1000;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .centered-title {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card .icon {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .sectors-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .jobs-section .cta-buttons {
        flex-direction: column;
    }
    
    .job-opportunities {
        padding: 15px;
    }

    .placeholder-img {
        max-height: 300px;
    }

    .language-selector {
        position: absolute;
        top: 15px;
        right: 60px;
    }
    
    .language-link {
        font-size: 0.8rem;
        padding: 2px 5px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }

    .centered-title {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.3rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-section .cta-buttons {
        flex-direction: column;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }
}

/* Employers Section */
.employers-section {
    background-color: #f5f7fa;
    border-top: 1px solid var(--border-color);
}

.employers-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.employers-info {
    flex: 1;
}

.employers-info p {
    margin-bottom: 20px;
}

.employers-info ul {
    margin: 20px 0;
}

.employers-info ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.employers-info ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.employers-image {
    flex: 1;
}

.employer-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

@media (max-width: 992px) {
    .employers-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .employer-buttons {
        flex-direction: column;
    }
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 5px;
}

.language-link {
    color: #adb5bd;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
    transition: var(--transition);
}

.language-link:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.language-link.active {
    color: white;
    background-color: var(--primary-color);
}

@media (max-width: 992px) {
    .language-selector {
        margin-left: 15px;
    }
}

@media (max-width: 768px) {
    .language-selector {
        position: absolute;
        top: 15px;
        right: 60px;
    }
    
    .language-link {
        font-size: 0.8rem;
        padding: 2px 5px;
    }
} 