body {
    margin: 0;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: #f4f6fa;
    color: #222;
}
header {
    background: linear-gradient(90deg, #0f2027 0%, #2c5364 100%);
    color: #fff;
    padding-bottom: 40px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 8vw 0 8vw;
}
.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}
nav ul li a:hover {
    color: #ffd700;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 8vw 0 8vw;
    flex-wrap: wrap;
}
.hero-content {
    max-width: 500px;
}
.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 24px;
}
.cta-btn {
    background: #ffd700;
    color: #222;
    padding: 12px 32px;
    border: none;
    border-radius: 24px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s;
}
.cta-btn:hover {
    background: #fff;
    color: #0f2027;
}
.hero-img {
    width: 340px;
    max-width: 90vw;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    margin-top: 24px;
}
main {
    padding: 48px 8vw 0 8vw;
}
.services {
    text-align: center;
    margin-bottom: 64px;
}
.services h2 {
    font-size: 2rem;
    margin-bottom: 32px;
}
.service-list {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.service-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(44,83,100,0.08);
    padding: 24px;
    width: 300px;
    margin-bottom: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(44,83,100,0.16);
}
.service-item img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
}
.service-item h3 {
    margin: 12px 0 8px 0;
    font-size: 1.2rem;
}
.join {
    background: #eaf1fb;
    border-radius: 18px;
    padding: 40px 24px;
    margin-bottom: 64px;
    text-align: center;
}
.join h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}
#join-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}
#join-form input, #join-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #b0c4de;
    font-size: 1rem;
    resize: none;
}
#join-form button {
    background: #2c5364;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
#join-form button:hover {
    background: #ffd700;
    color: #222;
}
.contact {
    text-align: center;
    margin-bottom: 48px;
}
footer {
    background: #0f2027;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    border-radius: 0 0 12px 12px;
    margin-top: 48px;
    font-size: 1rem;
}
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        align-items: flex-start;
    }
    .service-list {
        flex-direction: column;
        gap: 0;
    }
    nav {
        flex-direction: column;
        gap: 12px;
    }
}
/* Global Presence Section */
.global {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(44,83,100,0.08);
    padding: 40px 24px;
    margin-bottom: 64px;
    text-align: center;
}
.global-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.global-img {
    width: 340px;
    max-width: 90vw;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.global-content ul {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
    color: #2c5364;
}
.global-content ul li {
    margin-bottom: 8px;
}
/* Partners Section */
.partners {
    background: #eaf1fb;
    border-radius: 18px;
    padding: 40px 24px;
    margin-bottom: 64px;
    text-align: center;
}
.partner-logos {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.partner-logos img {
    width: 120px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(44,83,100,0.12);
    background: #fff;
    padding: 8px;
}
/* Testimonials Section */
.testimonials {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(44,83,100,0.08);
    padding: 40px 24px;
    margin-bottom: 64px;
    text-align: center;
}
.testimonial-list {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
}
.testimonial-item {
    background: #eaf1fb;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(44,83,100,0.08);
    padding: 24px;
    width: 300px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.testimonial-item img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(44,83,100,0.12);
}
.testimonial-item span {
    color: #2c5364;
    font-size: 0.95rem;
    margin-top: 8px;
}
/* FAQ Section */
.faq {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(44,83,100,0.08);
    padding: 40px 24px;
    margin-bottom: 64px;
    text-align: center;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.faq-item {
    margin-bottom: 24px;
}
.faq-item h3 {
    color: #2c5364;
    margin-bottom: 8px;
    font-size: 1.1rem;
}
.faq-item p {
    margin: 0;
    color: #333;
    font-size: 1rem;
}
/* Training & Certification Section */
.training {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(44,83,100,0.08);
    padding: 40px 24px;
    margin-bottom: 64px;
    text-align: center;
}
.training-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
}
.training-img {
    width: 320px;
    max-width: 90vw;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.training-info {
    max-width: 400px;
    text-align: left;
}
.training-info h3 {
    color: #2c5364;
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.15rem;
}
.training-info p {
    color: #333;
    margin-bottom: 18px;
    font-size: 1rem;
}
@media (max-width: 900px) {
    .training-content {
        flex-direction: column;
        gap: 16px;
    }
    .training-info {
        text-align: center;
    }
} 