* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #026670;
    --primary-dark: #014a52;
    --secondary-color: #FCE181;
    --secondary-light: #FDF9C7;
    --accent-color: #9FEDD7;
    --success-color: #4caf50;
    --danger-color: #f44336;
    --warning-color: #FCE181;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #EDEAE5;
    --bg-white: #ffffff;
    --border-color: #EDEAE5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

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

/* Header & Navigation */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: var(--transition);
}

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

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: var(--primary-color);
    padding: 20px;
    gap: 15px;
}

.mobile-nav-link {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 500;
    padding: 10px;
    border-radius: 5px;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(159, 237, 215, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(252, 225, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

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

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-search {
    width: 100%;
    margin-top: 10px;
}

.contact-form .btn-submit {
    background-color: #026670;
    color: var(--bg-white);
    border: none;
    width: 100%;
}

.contact-form .btn-submit:hover {
    background-color: #014a52;
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
}

/* Sections */
.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 50px;
}

/* Founder Message Section */
.founder-message {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.founder-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-photo {
    width: 300px;
    height: 300px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150px;
    color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease;
}

.founder-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
}

.founder-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.founder-title {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 600;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.founder-message-text {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.founder-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--secondary-color);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.founder-signature p {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Highlights Section */
.highlights {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
    border: 2px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.highlight-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Courses Preview */
.courses-preview {
    padding: 80px 20px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.course-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.course-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.course-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.course-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.course-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

.course-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-light);
    flex-wrap: wrap;
}

.duration,
.level {
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.stars {
    color: var(--secondary-color);
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 13px;
}

/* Achievements */
.achievements {
    padding: 80px 20px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    border-radius: 10px;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.achievement-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.achievement-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.achievement-item p {
    font-size: 16px;
    opacity: 0.95;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(159, 237, 215, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(252, 225, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* About Section */
.about-intro {
    padding: 80px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: rgba(255, 255, 255, 0.3);
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.mission-card,
.vision-card {
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover,
.vision-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.card-icon {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 80px;
    width: 100%;
}

.card-icon i {
    font-size: 60px !important;
    color: var(--primary-color) !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    line-height: 1 !important;
    vertical-align: middle !important;
    transition: var(--transition);
    background: linear-gradient(135deg, var(--bg-light), var(--secondary-light));
    padding: 20px;
    border-radius: 20px;
}

.mission-card:hover .card-icon i,
.vision-card:hover .card-icon i {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-dark) !important;
}

.mission-card h3,
.vision-card h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.mission-card h3::after,
.vision-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.mission-card:hover h3::after,
.vision-card:hover h3::after {
    width: 100%;
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 15px;
    transition: color 0.3s ease;
}

.mission-card:hover p,
.vision-card:hover p {
    color: var(--text-dark);
}

/* Values */
.values {
    padding: 80px 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
    border-top: 4px solid var(--secondary-color);
    border: 2px solid transparent;
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--accent-color);
    border-top-color: var(--accent-color);
}

.value-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

/* Faculty */
.faculty {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faculty-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.faculty-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.faculty-image {
    font-size: 80px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.faculty-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.faculty-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.faculty-bio {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--secondary-color);
}

.timeline-item {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) > * {
    direction: ltr;
}

.timeline-year {
    text-align: right;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    padding-right: 40px;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-color: var(--secondary-color);
    border: 4px solid var(--bg-white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--primary-color);
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
    padding-right: 0;
    padding-left: 40px;
}

.timeline-item:nth-child(even) .timeline-year::after {
    right: auto;
    left: -22px;
}

.timeline-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Achievements List */
.achievements-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 50px;
}

.achievement-item-detailed {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.achievement-item-detailed:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.achievement-item-detailed i {
    font-size: 32px;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.achievement-item-detailed h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.achievement-item-detailed p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Courses Section */
.courses-section {
    padding: 80px 20px;
}

.courses-filter {
    text-align: center;
    margin-bottom: 50px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #026670;
    background-color: transparent;
    color: #026670;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #026670;
    color: var(--bg-white);
}

.course-card-detailed {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.course-card-detailed:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.course-icon-large {
    font-size: 48px;
    color: #9FEDD7;
}

.course-badge {
    background-color: #9FEDD7;
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.course-card-detailed h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.course-description {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.course-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 14px;
}

.detail-item i {
    color: #9FEDD7;
    font-size: 18px;
}

.course-highlights {
    margin-bottom: 25px;
}

.course-highlights h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 16px;
}

.course-highlights ul {
    list-style: none;
    padding-left: 0;
}

.course-highlights li {
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
}

.course-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.course-card-detailed .btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
}

.course-card-detailed .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Results Section */
.results-section {
    padding: 80px 20px;
}

.results-container {
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    padding: 40px;
    margin-bottom: 80px;
}

.search-panel {
    margin-bottom: 40px;
}

.search-panel h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.search-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-input {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    transition: var(--transition);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.search-info {
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 5px;
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-info i {
    color: var(--secondary-color);
}

.results-display {
    animation: fadeInUp 0.6s ease;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.results-header h2 {
    font-size: 28px;
    color: var(--primary-color);
}

.student-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-item .label {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-item .value {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
}

.marks-table {
    margin-bottom: 40px;
}

.marks-table h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.marks-table table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
}

.marks-table thead {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.marks-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.marks-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.marks-table tbody tr:hover {
    background-color: var(--bg-light);
}

.marks-table tbody tr:last-child td {
    border-bottom: none;
}

.overall-performance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.performance-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
}

.performance-card h3 {
    margin-bottom: 25px;
    font-size: 20px;
}

.performance-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
}

.performance-chart {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.performance-chart h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 20px;
}

.chart-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chart-bar {
    flex: 1;
    height: 30px;
    background-color: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 15px;
    transition: width 0.6s ease;
}

.bar-label {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 50px;
    text-align: right;
}

.result-message {
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
}

.result-message.pass {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.result-message.fail {
    background-color: rgba(244, 67, 54, 0.1);
    color: var(--danger-color);
    border: 1px solid var(--danger-color);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results-content i {
    font-size: 80px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.no-results-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.no-results-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Top Performers */
.top-performers {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.performers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.performer-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
    position: relative;
}

.performer-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.rank-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.performer-avatar {
    font-size: 80px;
    color: #9FEDD7;
    margin-bottom: 20px;
}

.performer-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.performer-course {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.performer-score {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.performer-badge-achievement {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.performer-badge-achievement i {
    color: #9FEDD7;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
}

.contact-form-wrapper:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form .form-group label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.contact-form .form-input {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    transition: var(--transition);
    font-family: inherit;
    background-color: var(--bg-white);
}

.contact-form .form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(159, 237, 215, 0.2);
}

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

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-wrapper h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.social-section {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
}

.social-section:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.social-section h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.social-links-large {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link-large {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    text-decoration: none;
}

.social-link-large:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.map-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.contact-info-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    font-size: 24px;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-message {
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    display: none;
    font-weight: 600;
}

.form-message.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.form-message.error {
    background-color: rgba(244, 67, 54, 0.1);
    color: var(--danger-color);
    border: 1px solid var(--danger-color);
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Privacy & Terms */
.privacy-section,
.terms-section {
    padding: 80px 20px;
}

.content-section {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.content-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
    text-align: left;
}

.footer-bottom a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

/* Mobile Navigation Active State */
.mobile-nav.active {
    display: flex;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 40px;
        max-width: 180px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-card,
    .vision-card {
        padding: 40px 30px;
    }

    .card-icon {
        height: 70px;
    }

    .card-icon i {
        font-size: 50px !important;
        padding: 15px;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 24px;
    }

    .mission-card p,
    .vision-card p {
        font-size: 14px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px 20px;
    }

    .info-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .map-container iframe {
        height: 300px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .founder-content,
    .about-grid,
    .mission-vision-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .founder-image {
        order: -1;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        direction: ltr;
    }

    .timeline-year {
        text-align: left;
        padding-right: 0;
        padding-left: 40px;
    }

    .timeline-year::after,
    .timeline-item:nth-child(even) .timeline-year::after {
        left: 12px;
        right: auto;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .overall-performance {
        grid-template-columns: 1fr;
    }

    .performance-stats {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-img {
        height: 35px;
        max-width: 150px;
    }

    .header-content {
        padding: 10px 0;
    }

    .mission-vision-section {
        padding: 60px 15px;
    }

    .mission-card,
    .vision-card {
        padding: 35px 25px;
        border-radius: 15px;
    }

    .card-icon {
        height: 60px;
        margin-bottom: 20px;
    }

    .card-icon i {
        font-size: 45px !important;
        padding: 12px;
        border-radius: 15px;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .mission-card p,
    .vision-card p {
        font-size: 13px;
        line-height: 1.7;
    }

    .contact-section,
    .map-section,
    .faq-section {
        padding: 60px 15px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px 15px;
    }

    .contact-form-wrapper h2,
    .contact-info-wrapper h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .info-card {
        padding: 20px 15px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .info-content h3 {
        font-size: 16px;
    }

    .info-content p {
        font-size: 13px;
    }

    .social-links-large {
        justify-content: center;
    }

    .social-link-large {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .map-container iframe {
        height: 250px;
    }

    .contact-form .form-input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

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

    .highlights-grid,
    .testimonials-grid,
    .performers-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

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

    .filter-btn {
        width: 100%;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .logo-img {
        height: 30px;
        max-width: 130px;
    }

    .header-content {
        padding: 8px 0;
    }

    .mission-vision-section {
        padding: 50px 10px;
    }

    .mission-card,
    .vision-card {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .card-icon {
        height: 50px;
        margin-bottom: 15px;
    }

    .card-icon i {
        font-size: 40px !important;
        padding: 10px;
        border-radius: 12px;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .mission-card p,
    .vision-card p {
        font-size: 12px;
        line-height: 1.6;
    }

    .contact-section,
    .map-section,
    .faq-section {
        padding: 50px 10px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper,
    .info-card,
    .social-section {
        padding: 20px 12px;
    }

    .contact-form-wrapper h2,
    .contact-info-wrapper h2 {
        font-size: 20px;
    }

    .info-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .info-content h3 {
        font-size: 15px;
    }

    .info-content p {
        font-size: 12px;
    }

    .social-link-large {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .map-container iframe {
        height: 200px;
    }

    .contact-form .form-input {
        padding: 8px 10px;
        font-size: 12px;
    }

    .btn-submit {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Services Section */
.services {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

/* Courses Section */
.courses-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--secondary-light) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto 30px;
}

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

.cta-buttons .btn-primary {
    background-color: #026670;
    color: var(--bg-white);
    border: none;
}

.cta-buttons .btn-primary:hover {
    background-color: #014a52;
    transform: translateY(-2px);
}

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

.cta-buttons .btn-secondary:hover {
    background-color: #026670;
    color: var(--bg-white);
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

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

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

/* Results Highlights Section */
.results-highlights {
    padding: 80px 20px;
    background-color: var(--bg-white);
}
