 :root {
        --pmk-blue: #1a3e6f;
        --pmk-light-blue: #2a5ba0;
        --pmk-orange: #fff211;
        --pmk-light: #f8f9fa;
        --pmk-dark: #333;
        --pmk-green: #4caf50;
    }
    
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--pmk-dark);
        line-height: 1.6;
        overflow-x: hidden;
        font-size: 1.05rem; /* Medium font size */
    }
    
    /* Header Styles */
    .pmk-header {
        background-color: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 15px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .pmk-logo {
        font-weight: 700;
        font-size: 26px;
        color: var(--pmk-blue);
        text-decoration: none;
        display: flex;
        align-items: center;
    }
    
    .header-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }
    
    .header-contact {
        font-size: 15px;
        color: #666;
        font-weight: 500;
    }
    
    .pmk-nav .nav-link {
        color: var(--pmk-dark);
        font-weight: 600;
        padding: 10px 18px;
        transition: color 0.3s;
        font-size: 16px;
    }
    
    .pmk-nav .nav-link:hover {
        color: var(--pmk-orange);
    }
    
    .nav-main {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .nav-left, .nav-right {
        display: flex;
        align-items: center;
    }
    
    .register-btn {
        background-color: var(--pmk-orange);
        color: white;
        padding: 10px 25px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s;
        border: none;
    }
    
    .register-btn:hover {
        background-color: #e07100;
        color: white;
        transform: translateY(-2px);
    }
    
    .dropdown-menu {
        border: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-radius: 8px;
        padding: 10px 0;
    }
    
    .dropdown-item {
        padding: 10px 20px;
        font-size: 15px;
        font-weight: 500;
    }
    
    .dropdown-item:hover {
        background-color: rgba(26, 62, 111, 0.1);
        color: var(--pmk-blue);
    }
    
    /* Hero Section */
    .pmk-hero {
        background: linear-gradient(135deg, var(--pmk-blue) 0%, var(--pmk-light-blue) 100%);
        color: white;
        padding: 80px 0 50px;
        position: relative;
        overflow: hidden;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }
    
    .hero-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 600px;
        opacity: 0.95;
        line-height: 1.5;
    }
    
    .hero-btn {
        background-color: white;
        color: var(--pmk-blue);
        font-weight: 700;
        padding: 14px 35px;
        border-radius: 30px;
        border: none;
        transition: all 0.3s;
        font-size: 17px;
    }
    
    .hero-btn:hover {
        background-color: var(--pmk-orange);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
    
    .hero-image {
        position: relative;
        text-align: center;
    }
    
    .hero-image img {
        max-height: 380px;
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }
    
    .stats-section {
        margin-top: 60px;
    }
    
    .stat-card {
        background-color: white;
        color: var(--pmk-blue);
        padding: 25px 20px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        border-left: 5px solid var(--pmk-orange);
        transition: transform 0.3s;
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
    }
    
    .stat-value {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 1rem;
        color: var(--pmk-dark);
        font-weight: 600;
    }
    
    /* Consultation Form Styles */
    .consultation-form {
        background-color: white;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        margin-top: 30px;
        border: 1px solid #eaeaea;
    }
    
    .form-title {
        color: var(--pmk-blue);
        font-weight: 700;
        margin-bottom: 25px;
        text-align: center;
        font-size: 2rem;
    }
    
    .form-control {
        padding: 14px 16px;
        border-radius: 8px;
        margin-bottom: 18px;
        border: 2px solid #eaeaea;
        font-size: 15px;
        transition: all 0.3s;
    }
    
    .form-control:focus {
        border-color: var(--pmk-blue);
        box-shadow: 0 0 0 0.2rem rgba(26, 62, 111, 0.25);
    }
    
    .form-select {
        padding: 14px 16px;
        border-radius: 8px;
        margin-bottom: 18px;
        border: 2px solid #eaeaea;
        font-size: 15px;
    }
    
    .form-check-label {
        font-size: 0.9rem;
        line-height: 1.5;
        font-weight: 500;
    }
    
    .submit-btn {
        background-color: var(--pmk-orange);
        color: #242424;
        font-weight: 700;
        padding: 15px;
        border-radius: 8px;
        border: none;
        width: 100%;
        transition: all 0.3s;
        font-size: 16px;
        margin-top: 10px;
    }
    
    .submit-btn:hover {
        background-color: #e07100;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    /* Section Styles */
    .section-title {
        color: var(--pmk-blue);
        font-weight: 800;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 18px;
        font-size: 3rem;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 4px;
        background-color: var(--pmk-orange);
        border-radius: 2px;
    }
    
    .center-title .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-subtitle {
        color: #666;
        margin-bottom: 45px;
        max-width: 100%;
        font-size: 1.5rem;
        line-height: 1.6;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .bg-light-section {
        background-color: var(--pmk-light);
    }
    
    /* Card Styles */
    .pmk-card {
        background-color: white;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        height: 100%;
        border: none;
        overflow: hidden;
        border: 1px solid #f0f0f0;
    }
    
    .pmk-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    
    .card-icon {
        font-size: 2.5rem;
        color: var(--pmk-orange);
        margin-bottom: 25px;
    }
    
    .card-title {
        color: var(--pmk-blue);
        font-weight: 700;
        margin-bottom: 18px;
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .course-card img {
        height: 200px;
        object-fit: cover;
        transition: transform 0.5s;
    }
    
    .course-card:hover img {
        transform: scale(1.08);
    }
    
    .course-card .card-body {
        padding: 25px;
    }
    
    .course-card .card-text {
        font-size: 1.5rem;
        line-height: 1.6;
        color: #555;
    }
    
    /* Feature Icons */
    .feature-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--pmk-blue) 0%, var(--pmk-light-blue) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        transition: transform 0.3s;
    }
    
    .feature-icon:hover {
        transform: scale(1.1);
    }
    
    .feature-icon i {
        font-size: 28px;
        color: white;
    }
    
    .feature-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 15px;
        text-align: center;
        color: var(--pmk-blue);
    }
    
    .feature-text {
        font-size: 1rem;
        text-align: center;
        line-height: 1.6;
        color: #555;
    }
    
    /* Table Styles */
    .pmk-table {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        border: 1px solid #dee2e6;
        font-size: 1rem;
    }
    
    .pmk-table thead {
        background: linear-gradient(135deg, var(--pmk-blue) 0%, var(--pmk-light-blue) 100%);
        color: white;
    }
    
    .pmk-table th {
        font-weight: 700;
        padding: 18px;
        border: 1px solid #dee2e6;
        font-size: 1.5rem;
        text-align: center;
    }
    
    .pmk-table td {
        padding: 16px;
        vertical-align: middle;
        border: 1px solid #dee2e6;
        font-size: 1.4rem;
        font-weight: 500;
    }
    
    .table-title {
        color: var(--pmk-blue);
        font-weight: 800;
        margin-bottom: 25px;
        text-align: center;
        font-size: 2rem;
    }
    
    /* Testimonial Styles */
    .testimonial-card {
        padding: 30px;
        position: relative;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-left: 5px solid var(--pmk-orange);
    }
    
    .testimonial-card:before {
        content: '"';
        position: absolute;
        top: 20px;
        left: 25px;
        font-size: 60px;
        color: rgba(26, 62, 111, 0.1);
        font-family: Georgia, serif;
        line-height: 1;
    }
    
    .testimonial-text {
        font-style: italic;
        margin-bottom: 25px;
        position: relative;
        z-index: 1;
        font-size: 1.1rem;
        line-height: 1.7;
        color: #444;
    }
    
    .testimonial-author {
        font-weight: 700;
        color: var(--pmk-blue);
        margin-bottom: 8px;
        font-size: 1.2rem;
    }
    
    .testimonial-role {
        font-size: 1rem;
        color: #666;
        font-weight: 500;
    }
    
    .testimonial-img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 20px;
        border: 4px solid var(--pmk-orange);
    }
    
    /* Accordion Styles */
    .pmk-accordion .accordion-item {
        border: none;
        margin-bottom: 18px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        border: 1px solid #eaeaea;
    }
    
    .pmk-accordion .accordion-button {
        background-color: white;
        color: var(--pmk-blue);
        font-weight: 700;
        padding: 20px;
        box-shadow: none;
        font-size: 1.4rem;
        border: none;
    }
    
    .pmk-accordion .accordion-button:not(.collapsed) {
        background-color: rgba(26, 62, 111, 0.05);
        color: var(--pmk-blue);
        border-bottom: 2px solid var(--pmk-orange);
    }
    
    .pmk-accordion .accordion-body {
        padding: 25px;
        background-color: rgba(26, 62, 111, 0.02);
        font-size: 1.5rem;
        line-height: 1.7;
        color: #444;
    }
    
    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, var(--pmk-blue) 0%, var(--pmk-light-blue) 100%);
        color: white;
        padding: 90px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .cta-title {
        font-size: 2.3rem;
        font-weight: 800;
        margin-bottom: 25px;
        line-height: 1.3;
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
        margin-bottom: 45px;
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.95;
        line-height: 1.6;
    }
    
    .cta-btn {
        background-color: white;
        color: var(--pmk-blue);
        font-weight: 700;
        padding: 16px 40px;
        border-radius: 30px;
        border: none;
        transition: all 0.3s;
        font-size: 17px;
    }
    
    .cta-btn:hover {
        background-color: var(--pmk-orange);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
    
    /* Footer Styles */
    .pmk-footer {
        background-color: #1a1a1a;
        color: #aaa;
        padding: 70px 0 30px;
    }
    
    .footer-title {
        color: white;
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 12px;
    }
    
    .footer-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: var(--pmk-orange);
        border-radius: 2px;
    }
    
    .footer-links {
        list-style: none;
        padding: 0;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        color: #aaa;
        text-decoration: none;
        transition: color 0.3s;
        font-size: 1rem;
        font-weight: 500;
    }
    
    .footer-links a:hover {
        color: white;
        padding-left: 5px;
    }
    
    .footer-bottom {
        border-top: 1px solid #333;
        padding-top: 25px;
        margin-top: 50px;
        text-align: center;
        font-size: 0.9rem;
        color: #888;
    }
    
    /* Content Box Styles */
    .content-box {
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        margin-bottom: 35px;
        border: 1px solid #f0f0f0;
    }
    
    .content-box h3 {
        color: var(--pmk-blue);
        margin-bottom: 25px;
        border-bottom: 3px solid var(--pmk-orange);
        padding-bottom: 12px;
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    .content-box p {
        font-size: 1.5rem;
        line-height: 1.7;
        color: #444;
        margin-bottom: 20px;
    }
    
    .content-box ul {
        font-size: 1.5rem;
        line-height: 1.7;
        color: #444;
    }
    
    /* Career Icons */
    .career-icon {
        font-size: 3rem;
        color: var(--pmk-blue);
        margin-bottom: 20px;
        transition: transform 0.3s;
    }
    
    .career-icon:hover {
        transform: scale(1.1);
    }
    
    /* Benefits List */
    .benefits-list {
        list-style: none;
        padding: 0;
    }
    
    .benefits-list li {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        font-size: 1.5rem;
        position: relative;
        padding-left: 25px;
    }
    
    .benefits-list li:before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--pmk-green);
        font-weight: bold;
        font-size: 1.2rem;
    }
    
    .benefits-list li:last-child {
        border-bottom: none;
    }
    
    /* Button Styles */
    .btn-primary {
        background: linear-gradient(135deg, var(--pmk-blue) 0%, var(--pmk-light-blue) 100%);
        border: none;
        padding: 12px 30px;
        font-weight: 700;
        font-size: 16px;
        border-radius: 8px;
        transition: all 0.3s;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
    
    .btn-lg {
        padding: 15px 35px;
        font-size: 17px;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        body {
            font-size: 1rem;
        }
        
        .hero-title {
            font-size: 2rem;
        }
        
        .section-padding {
            padding: 60px 0;
        }
        
        .stat-card {
            margin-bottom: 25px;
        }
        
        .pmk-table {
            font-size: 0.95rem;
        }
        
        .consultation-form {
            margin-top: 50px;
        }
        
        .header-top {
            flex-direction: column;
            text-align: center;
        }
        
        .header-contact {
            margin-top: 15px;
            font-size: 14px;
        }
        
        .section-title {
            font-size: 1.7rem;
        }
    }
    
    @media (max-width: 576px) {
        .hero-title {
            font-size: 1.8rem;
        }
        
        .section-title {
            font-size: 1.5rem;
        }
        
        .card-title {
            font-size: 1.3rem;
        }
        
        .pmk-nav .nav-link {
            padding: 8px 12px;
            font-size: 15px;
        }
        
        .hero-btn, .cta-btn {
            padding: 12px 25px;
            font-size: 15px;
        }
        
        .stat-value {
            font-size: 1.7rem;
        }
    }