
:root {
    --primary-bg: #0A1A2F;
    --secondary-bg: #0D0D1A;
    --gold: #D4AF37;
    --gold-light: #F5E8B5;
    --text-primary: #FFFFFF;
    --text-secondary: #E5E5E5;
    --error: #C41E3A;
    --success: #4CAF50;
    --gray-dark: #333333;
    --gray: #666666;
    --gray-light: #AAAAAA;
    --shadow: rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --section-spacing: 100px;
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-light);
}

.btn {
    font-weight: 500;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
}

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

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

.btn-lg {
    padding: 15px 30px;
    font-size: 16px;
}

.btn-floating {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.img-fluid {
    width: 100%;
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
}

.section {
    padding: var(--section-spacing) 0;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
}

.section-title {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.gold-text {
    color: var(--gold);
}

.text-center {
    text-align: center;
}

.iti {
    width: 100%;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 26, 0.95);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(10px);
}

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

.cookie-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.cookie-content p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.cookie-settings-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.cookie-settings-button .btn {
    background-color: var(--secondary-bg);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.cookie-settings-button .btn:hover {
    background-color: var(--gold);
    color: var(--secondary-bg);
}

.cookie-settings-button .fa-cookie-bite {
    font-size: 1.5rem;
}


.modal-content {
    background-color: var(--secondary-bg);
    color: var(--text-primary);
    border: 1px solid var(--gold);
}

.modal-header {
    border-bottom-color: var(--gold);
}

.modal-footer {
    border-top-color: var(--gold);
}

.modal-header .btn-close {
    color: var(--text-primary);
    filter: invert(1) brightness(1.5);
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}


.navbar {
    padding: 15px 0;
    background-color: rgba(10, 26, 47, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar-brand img {
    height: 50px;
    transition: var(--transition);
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: 10px 15px;
    transition: var(--transition);
}

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

.navbar-nav .dropdown-menu {
    display: none !important;
    position: absolute;
    background-color: rgba(13, 13, 26, 0.95);
    border: 1px solid var(--gold);
    border-radius: var(--border-radius);
    padding: 10px 0;
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.navbar-nav .nav-item:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

.navbar-nav .dropdown-item {
    color: var(--text-primary);
    padding: 8px 20px;
    transition: var(--transition);
}

.navbar-nav .dropdown-item:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.navbar-toggler {
    border: none;
    padding: 10px;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.offcanvas {
    background-color: var(--secondary-bg);
}

.offcanvas-header,
.offcanvas-body {
    padding: 20px;
}

.offcanvas-title {
    color: var(--gold);
    font-weight: 700;
}

.offcanvas .navbar-nav .dropdown-menu {
    position: static;
    width: 100%;
    background-color: transparent;
    border: none;
    box-shadow: none;
    display: none;
}

.offcanvas .nav-link.active + .dropdown-menu {
    display: block;
}

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


.hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 13, 26, 0.9) 0%, rgba(10, 26, 47, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    padding-right: 30px;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-image:after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: -20px;
    left: -20px;
    border: 2px solid var(--gold);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.5;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 991px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        padding-right: 0;
        margin-top: 30px;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
}


.page-header {
    padding: 80px 0;
    background: linear-gradient(to right, var(--secondary-bg), var(--primary-bg));
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header .lead {
    max-width: 800px;
    margin: 0 auto;
}


.problem-solution-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.problem-card,
.solution-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-card:hover,
.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.problem-card h3,
.solution-card h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.feature-list {
    padding-left: 0;
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.feature-list li:before {
    content: '✓';
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 8px;
}

.section-image {
    position: relative;
}

.section-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.section-image:after {
    content: '';
    position: absolute;
    top: 15px;
    right: -15px;
    bottom: -15px;
    left: 15px;
    border: 2px solid var(--gold);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.5;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background-color: var(--gold);
    color: var(--secondary-bg);
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    margin-bottom: 0;
    opacity: 0.9;
}


.skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.skill-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 20px;
    transition: var(--transition);
}

.skill-item:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.skill-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.skill-item p {
    margin-bottom: 0;
    opacity: 0.9;
}


.course-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.course-image {
    position: relative;
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--gold);
    color: var(--secondary-bg);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.course-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.8;
}

.course-features {
    margin-top: 20px;
    margin-bottom: 20px;
}

.course-features p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.course-price {
    margin-top: auto;
    margin-bottom: 20px;
    text-align: right;
}

.price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gold);
}


.program-timeline {
    padding-left: 30px;
    position: relative;
}

.program-timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--gold);
    opacity: 0.5;
}

.program-module {
    position: relative;
    padding-bottom: 30px;
}

.program-module:before {
    content: '';
    position: absolute;
    left: -38px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--gold);
    border: 4px solid var(--primary-bg);
}

.module-header {
    margin-bottom: 15px;
}

.module-week {
    display: inline-block;
    background-color: var(--gold);
    color: var(--secondary-bg);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.module-title {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.module-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.module-content li {
    margin-bottom: 8px;
}

.module-outcome {
    font-style: italic;
    margin-bottom: 0;
}


.method-block,
.guarantee-block {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.method-block h3,
.guarantee-block h3 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}


.audience-profiles {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.audience-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.audience-card:hover {
    transform: translateX(10px);
    background-color: rgba(212, 175, 55, 0.1);
}

.audience-icon {
    width: 60px;
    height: 60px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--secondary-bg);
    flex-shrink: 0;
}

.audience-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.audience-benefit {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.accordion-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.accordion-button {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-weight: 700;
    padding: 20px 25px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--gold);
    background-color: rgba(212, 175, 55, 0.1);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--gold);
}

.accordion-button::after {
    filter: invert(1) brightness(2);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1) sepia(1) hue-rotate(15deg) saturate(5);
}

.accordion-body {
    padding: 20px 25px;
    background-color: rgba(255, 255, 255, 0.02);
}

.accordion-body p, .accordion-body li {
  color: white;
}


.contact-form-wrapper {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 12px 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    color: var(--text-primary);
}

.form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 12px 15px 12px 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.form-select:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    color: var(--text-primary);
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0.2em;
}

.form-check-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.form-check-label {
    margin-left: 8px;
}

.form-check-label a {
    text-decoration: underline;
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-feature i {
    font-size: 1.2rem;
}

.contact-quote {
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    border-left: 4px solid var(--gold);
    margin-top: 30px;
}

.contact-quote blockquote {
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
}


.thanks-section {
    padding: 120px 0;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.next-steps-box {
    margin: 50px 0;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.next-step-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.next-step-card:hover {
    transform: translateY(-10px);
    background-color: rgba(212, 175, 55, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--gold);
    color: var(--secondary-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.content-preview-grid {
    margin-top: 40px;
}

.content-preview-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 25px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-preview-card:hover {
    background-color: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
}

.content-preview-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.content-preview-card ul {
    padding-left: 20px;
}

.content-preview-card ul li {
    margin-bottom: 8px;
}


.mission-card,
.vision-card,
.values-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.methodology-framework {
    margin-top: 30px;
}

.methodology-step {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.methodology-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-content p {
    margin-bottom: 0;
}

.result-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-card:hover {
    transform: translateY(-10px);
    background-color: rgba(212, 175, 55, 0.1);
}

.result-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.result-text {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.case-studies {
    margin-top: 50px;
}

.case-study-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 25px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study-card:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.case-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-header h4 {
    margin-bottom: 5px;
}

.case-meta {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
}

.case-challenge,
.case-solution,
.case-result {
    margin-bottom: 10px;
}

.case-result {
    margin-bottom: 0;
}

.quality-principles {
    margin-top: 30px;
}

.quality-principle-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quality-principle-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.principle-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.principle-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.principle-content p {
    margin-bottom: 0;
}

.quality-commitment-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.commitment-header {
    background-color: var(--gold);
    color: var(--secondary-bg);
    padding: 20px;
    text-align: center;
}

.commitment-header h3 {
    margin-bottom: 0;
}

.commitment-body {
    padding: 25px;
    flex-grow: 1;
}

.commitment-author {
    margin-top: 20px;
    text-align: right;
    font-style: italic;
}

.process-timeline {
    position: relative;
    margin-top: 50px;
}

.timeline-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.timeline-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

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


.courses-filter-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.courses-filter-box h3 {
    margin-bottom: 20px;
}

.filters-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-group {
    margin-bottom: 15px;
}

.filter-group h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.filter-btn {
    margin: 0 5px 5px 0;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.9rem;
}

.recommended-courses {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.recommended-courses h3 {
    margin-bottom: 20px;
}

.recommended-course-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recommended-course-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.course-thumb {
    width: 120px;
    flex-shrink: 0;
}

.course-thumb img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.course-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.course-info .course-meta {
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.course-info p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.policy-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 25px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-card h3 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.course-modal-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.course-modal-meta {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.course-modal-price {
    text-align: center;
}

.course-modal-price h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

.course-modal-details h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--gold);
}

.course-modal-details h3:first-child {
    margin-top: 0;
}


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

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-text p {
    margin-bottom: 0;
}

.contact-map {
    height: 100%;
    min-height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--border-radius);
}

.support-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-card:hover {
    transform: translateY(-10px);
    background-color: rgba(212, 175, 55, 0.05);
}

.support-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.support-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.support-link {
    display: inline-block;
    margin: 15px 0 5px;
    font-weight: 700;
    color: var(--gold);
}

.support-time {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
}

.support-box {
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.availability-calendar {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-header {
    background-color: var(--gold);
    color: var(--secondary-bg);
    padding: 15px;
    text-align: center;
}

.calendar-header h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
}

.calendar-body {
    padding: 20px;
}

.calendar-day {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-day:last-child {
    border-bottom: none;
}

.day-name {
    font-weight: 700;
}

.day-hours {
    font-weight: 500;
    color: var(--gold);
}

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

.hours-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.hours-item:last-child {
    margin-bottom: 0;
}

.hours-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.hours-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.hours-note {
    margin-top: 30px;
    font-style: italic;
}

.legal-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-info {
    margin-top: 20px;
}

.legal-info h3 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.legal-info p {
    margin-bottom: 10px;
}

.legal-info p:last-child {
    margin-bottom: 0;
}


.policy-content {
    line-height: 1.7;
}

.policy-intro {
    font-size: 1.1rem;
}

.policy-section h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--gold);
}

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

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

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

.contact-details {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.1);
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.table th {
    background-color: var(--gold);
    color: var(--secondary-bg);
    font-weight: 700;
    border-bottom: none;
}


.cta-section {
    padding: 80px 0;
}

.cta-content {
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    .cta-content {
        padding: 40px 20px;
    }
}


.footer {
    background-color: rgba(13, 13, 26, 0.95);
    padding: 80px 0 30px;
    position: relative;
}

.footer-brand p {
    opacity: 0.8;
    margin-top: 15px;
}

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

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    font-size: 1.2rem;
    margin-top: 5px;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

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

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

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.footer hr {
    margin: 40px 0;
    opacity: 0.1;
}

.footer-bottom {
    font-size: 0.9rem;
    opacity: 0.8;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

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


.success-icon {
    font-size: 3rem;
    color: var(--gold);
}


@media (max-width: 1199px) {
    .display-4 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .section {
        padding: 80px 0;
    }
    
    .navbar-nav .dropdown-menu {
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
    }
    
    .navbar-nav .dropdown-item {
        color: var(--text-primary);
        padding: 8px 15px;
    }
    
    .navbar-nav .dropdown-item:hover {
        background-color: transparent;
        color: var(--gold);
    }
    
    .hero-content,
    .section-content {
        margin-bottom: 40px;
    }
    
    .audience-card {
        flex-direction: column;
    }
    
    .audience-icon {
        margin-bottom: 20px;
    }
    
    .contact-item,
    .hours-item,
    .quality-principle-item {
        flex-direction: column;
    }
    
    .contact-icon,
    .hours-icon,
    .principle-icon {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-step,
    .timeline-step {
        flex-direction: column;
    }
    
    .step-icon,
    .step-number {
        margin-bottom: 15px;
    }
    
    .recommended-course-item {
        flex-direction: column;
    }
    
    .course-thumb {
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .display-4 {
        font-size: 2.2rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-buttons button {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
}