/* 
* Produktīvais Vadītājs - Main Stylesheet
* Version: 1.0
* Last Updated: January 2026
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --primary-color: #1A5F7A;
    --secondary-color: #FFC300;
    --accent-color: #FF5733;
    --background-light: #F8F9FA;
    --background-dark: #2C3E50;
    --text-primary: #212529;
    --text-secondary: #6C757D;
    --success-color: #28A745;
    --warning-color: #FFC107;
    --error-color: #DC3545;
    --border-radius: 8px;
    --transition-speed: 0.3s;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-primary);
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    padding: 10px 25px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active {
    background-color: #14495e !important;
    border-color: #14495e !important;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-lg {
    padding: 12px 30px;
}

.text-highlight {
    color: var(--secondary-color);
}

.bg-light {
    background-color: var(--background-light) !important;
}

.section-title {
    margin-bottom: 40px;
}

.section-title .subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
}

.section-title .subtitle:before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 10px;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateY(-50%);
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(26, 95, 122, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header-area {
    padding-top: 80px;
}

.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 600;
    padding: 10px 15px;
    position: relative;
}

.navbar-light .navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover:before,
.navbar-light .navbar-nav .nav-link.active:before {
    transform: scaleX(1);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #fff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        padding: 15px;
        border-radius: var(--border-radius);
        margin-top: 15px;
    }
    
    .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
    
    .navbar-light .navbar-nav .nav-link:before {
        left: 0;
        right: 0;
    }
    
    .navbar-nav .nav-item:last-child {
        margin-top: 15px;
    }
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    background-color: var(--background-light);
    padding: 80px 0 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header .breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
    justify-content: center;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
}

.page-header .breadcrumb-item a {
    color: var(--primary-color);
}

.page-header .breadcrumb-item.active {
    color: var(--text-secondary);
}

@media (max-width: 767px) {
    .page-header h1 {
        font-size: 32px;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-img-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.7));
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

.min-vh-80 {
    min-height: 80vh;
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-section p {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# Welcome Section
--------------------------------------------------------------*/
.welcome-section {
    position: relative;
    overflow: hidden;
}

.welcome-img-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.welcome-img-container img {
    transition: transform 0.5s ease;
}

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

.experience-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-box .number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.experience-box .text {
    font-size: 14px;
    color: var(--text-secondary);
}

/*--------------------------------------------------------------
# Benefits Section
--------------------------------------------------------------*/
.benefits-section {
    position: relative;
}

.benefit-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Programs Section
--------------------------------------------------------------*/
.programs-section {
    position: relative;
}

.program-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.program-img {
    position: relative;
    overflow: hidden;
}

.program-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-img img {
    transform: scale(1.1);
}

.program-content {
    padding: 25px;
}

.program-content .duration {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.program-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.program-content p {
    margin-bottom: 20px;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.btn-link i {
    margin-left: 5px;
    transition: transform var(--transition-speed) ease;
}

.btn-link:hover {
    color: var(--secondary-color);
}

.btn-link:hover i {
    transform: translateX(5px);
}

/*--------------------------------------------------------------
# Content Section
--------------------------------------------------------------*/
.content-section {
    position: relative;
}

.article-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.article-img {
    position: relative;
    overflow: hidden;
}

.article-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-img img {
    transform: scale(1.1);
}

.article-content {
    padding: 25px;
}

.article-content .category {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.article-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 15px;
}

.article-meta span {
    display: flex;
    align-items: center;
}

.article-meta span i {
    margin-right: 5px;
}

/*--------------------------------------------------------------
# Testimonial Section
--------------------------------------------------------------*/
.testimonial-section {
    position: relative;
}

.testimonial-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    position: relative;
}

.testimonial-content .rating {
    color: var(--warning-color);
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

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

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 14px;
}

.testimonial-card-detailed {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.testimonial-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card-detailed .testimonial-content {
    position: relative;
}

.testimonial-card-detailed .testimonial-content .rating {
    color: var(--warning-color);
    margin-bottom: 15px;
}

.testimonial-card-detailed .testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card-detailed .testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

.testimonial-card-detailed .author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-card-detailed .author-info span {
    color: var(--text-secondary);
    font-size: 14px;
}

.testimonial-card-detailed .program-info {
    margin-top: 5px;
    font-size: 12px;
    color: var(--text-secondary);
}

/*--------------------------------------------------------------
# Contact Form Section
--------------------------------------------------------------*/
.contact-form-section {
    position: relative;
}

.contact-form-container {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    height: auto;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border: 1px solid #ced4da;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 95, 122, 0.25);
}

textarea.form-control {
    min-height: 120px;
}

.contact-info {
    margin-top: 30px;
}

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

.contact-item i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/
.news-section {
    position: relative;
}

.news-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.news-img {
    position: relative;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

.news-img .date {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    border-top-right-radius: var(--border-radius);
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.news-meta {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 15px;
}

.news-meta span {
    display: flex;
    align-items: center;
}

.news-meta span i {
    margin-right: 5px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-area {
    position: relative;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer-widget .widget-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget .widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

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

.footer-links li a {
    color: #ddd;
    transition: all var(--transition-speed) ease;
}

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

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

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

.footer-bottom-links li a {
    color: #ddd;
    font-size: 14px;
    transition: all var(--transition-speed) ease;
}

.footer-bottom-links li a:hover {
    color: var(--secondary-color);
}

@media (max-width: 767px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-bottom-links li {
        margin: 0 8px;
    }
}

/*--------------------------------------------------------------
# Cookie Consent
--------------------------------------------------------------*/
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-dark);
    color: #fff;
    padding: 15px 0;
    z-index: 999;
    display: none;
}

.cookie-consent-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.cookie-consent-modal.show {
    display: flex;
}

.cookie-consent-content {
    background-color: #fff;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cookie-header h3 {
    margin-bottom: 0;
    font-size: 20px;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.cookie-body {
    padding: 20px;
}

.cookie-options {
    margin-top: 20px;
}

.cookie-option {
    margin-bottom: 20px;
}

.cookie-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 5px;
    margin-bottom: 0;
}

.cookie-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/*--------------------------------------------------------------
# About Us Page
--------------------------------------------------------------*/
.about-story-section {
    position: relative;
}

.about-img-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    transform: rotate(-90deg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-badge .number {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
}

.mission-vision-section {
    position: relative;
}

.mission-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.core-values-section {
    position: relative;
}

.value-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.approach-section {
    position: relative;
}

.approach-steps {
    position: relative;
}

.approach-step {
    display: flex;
    margin-bottom: 30px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 20px;
    margin-top: 5px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.methodology-section {
    position: relative;
}

.methodology-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.methodology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.success-stories-section {
    position: relative;
}

.story-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.story-img {
    position: relative;
    overflow: hidden;
}

.story-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-img img {
    transform: scale(1.1);
}

.story-content {
    padding: 25px;
}

.story-company {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.story-result {
    font-style: italic;
    color: var(--text-primary);
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    margin-top: 20px;
}

/*--------------------------------------------------------------
# Programs Page
--------------------------------------------------------------*/
.programs-overview-section {
    position: relative;
}

.program-detailed-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.program-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.program-detailed-card .program-img {
    position: relative;
    overflow: hidden;
}

.program-detailed-card .program-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-detailed-card:hover .program-img img {
    transform: scale(1.1);
}

.program-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
}

.program-detailed-card .program-content {
    padding: 25px;
}

.program-header {
    margin-bottom: 20px;
}

.program-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 10px;
}

.program-meta span {
    display: flex;
    align-items: center;
}

.program-meta span i {
    margin-right: 5px;
}

.program-description h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.program-description ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.program-description ul li {
    margin-bottom: 5px;
}

.program-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.additional-programs-section {
    position: relative;
}

.additional-program-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.additional-program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.program-action {
    margin-top: 20px;
}

.schedule-section {
    position: relative;
}

.schedule-table-container {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.schedule-table {
    margin-bottom: 0;
}

.schedule-table th {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 15px;
}

.schedule-table td {
    padding: 15px;
    vertical-align: middle;
}

.schedule-table tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

.schedule-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.schedule-note i {
    color: var(--primary-color);
}

.formats-section {
    position: relative;
}

.format-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.format-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.format-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    text-align: left;
}

.format-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.format-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-info-section {
    position: relative;
}

.contact-info-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.map-form-section {
    position: relative;
}

.map-container {
    margin-bottom: 30px;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.office-hours {
    margin-top: 20px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.hours-list li span:first-child {
    font-weight: 600;
}

.consultation-section {
    position: relative;
}

.consultation-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.consultation-features li {
    display: flex;
    margin-bottom: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(26, 95, 122, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-top: 5px;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.faq-section {
    position: relative;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion-button {
    background-color: #fff;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--box-shadow);
    font-weight: 600;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(26, 95, 122, 0.1);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A5F7A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px;
    background-color: #fff;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/*--------------------------------------------------------------
# Thank You Page
--------------------------------------------------------------*/
.thank-you-section {
    position: relative;
}

.thank-you-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 60px 30px;
    box-shadow: var(--box-shadow);
}

.thank-you-icon {
    font-size: 80px;
    color: var(--success-color);
    margin-bottom: 30px;
}

.suggested-content-section {
    position: relative;
}

.suggested-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.suggested-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.suggested-img {
    position: relative;
    overflow: hidden;
}

.suggested-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.suggested-card:hover .suggested-img img {
    transform: scale(1.1);
}

.suggested-content {
    padding: 25px;
}

.suggested-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Policy Pages
--------------------------------------------------------------*/
.policy-content-section {
    position: relative;
}

.policy-content {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.policy-last-updated {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.policy-section h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-section p, .policy-section ul, .policy-section ol {
    margin-bottom: 15px;
}

.policy-section ul, .policy-section ol {
    padding-left: 20px;
}

.policy-section ul li, .policy-section ol li {
    margin-bottom: 10px;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
    position: relative;
}

.cta-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 60px 30px;
    box-shadow: var(--box-shadow);
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
}

.reveal-element {
    opacity: 0;
    transform: translateY(20px);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
    .section-title h2 {
        font-size: 32px;
    }
    
    .hero-section h1 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-section p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 24px;
    }
    
    .hero-section h1 {
        font-size: 32px;
    }
    
    .hero-section p {
        font-size: 16px;
    }
    
    .benefit-card, .program-card, .article-card, .testimonial-card, .news-card {
        margin-bottom: 30px;
    }
    
    .contact-form-container {
        margin-top: 30px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
}

@media (max-width: 575px) {
    .section-title h2 {
        font-size: 22px;
    }
    
    .hero-section h1 {
        font-size: 28px;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
    
    .thank-you-card {
        padding: 30px 20px;
    }
}