:root {
    --primary: #463ed7;
    --secondary: #7d74ff;
    --bg-light: #f9f9ff;
    --bg-dark: #1a1a2e;
    --text-dark: #333;
    --text-light: #eee;
    --accent: #ffeb3b;
    --card-bg: #fff;
    --card-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    --font-stack: 'Inter', sans-serif;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: var(--font-stack);
    scroll-behavior: smooth;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
    padding: 0;
}

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

.section {
    padding: 80px 0;
}

.section-light {
    background: var(--bg-light);
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

/* Typography */
h1,
h2,
h3 {
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    color: var(--primary);
}

.section-dark h2 {
    color: var(--text-light);
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.section-dark p {
    color: #ccc;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 600;
    color: var(--text-dark);
}

.nav-links li a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-nav:hover {
    background: var(--secondary);
}

/* Hero Section */
.hero {
    height: 90vh;
    background: url('ai_license_background.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-info-badge {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-info-badge span {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.pre-title {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(70, 62, 215, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .highlight {
    color: var(--accent);
}

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #eee;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}

/* About Section */
.row {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.col-text,
.col-image {
    flex: 1;
    min-width: 300px;
}

.col-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.check-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.check-list li::before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Course Content Grid */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
}

.card h3 {
    margin-top: 0;
    color: var(--accent);
    font-size: 1.3rem;
}

.certification-banner {
    margin-top: 60px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
}

.certification-banner p {
    color: #eee;
    margin: 0;
}

/* Benefits Section */
.benefit-group {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.benefit-group.highlight-bg {
    background: #f0f4ff;
    border: 1px solid #dce4ff;
}

.benefit-group ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.benefit-group ul li:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    background: var(--bg-dark);
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    color: #fff;
}

.cta-section p {
    color: #ccc;
    font-size: 1.2rem;
}

.contact-form {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-form input {
    padding: 15px 20px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    width: 300px;
}

.small-print {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Contact Details */
.contact-details {
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
}

.contact-tag {
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 10px !important;
}

.contact-name {
    font-size: 1.8rem;
    margin-bottom: 10px !important;
    color: #fff;
}

.contact-phone {
    margin-bottom: 15px !important;
}

.contact-phone a {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.4rem;
}

.contact-phone a:hover,
.contact-email a:hover {
    color: #fff;
}

.contact-email {
    margin-bottom: 20px !important;
}

.contact-email a {
    color: var(--accent);
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-availability {
    margin: 20px 0;
    font-size: 1rem;
    color: #bbb;
}

.contact-availability p {
    margin-bottom: 5px;
}

.contact-address {
    font-size: 1rem;
    color: #aaa !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-bottom: 0 !important;
}

/* Footer */
footer {
    background: #111;
    color: #777;
    padding: 20px 0;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    /* Simplified mobile menu hiding for now */
    .row {
        flex-direction: column;
    }

    .contact-form {
        flex-direction: column;
        align-items: center;
    }
}