/* Base Styles */
:root {
    --primary-color: #f7a425; /* Orange from logo */
    --secondary-color: #d32f2f; /* Red from logo */
    --dark-color: #222222; /* Black from logo */
    --light-color: #ffffff;
    --gray-color: #f4f4f4;
    --border-color: #e0e0e0;
    --text-color: #333333;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

p {
    margin-bottom: 15px;
}

.btn, .btn span {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

a.small-link {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    max-width: 200px;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
}

nav ul li {
    margin-left: 5px;
}

nav ul li a {
    display: block;
    padding: 10px 15px;
    color: var(--dark-color);
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Banner/Slider Styles */
.banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--light-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    max-width: 800px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.slider-controls > * {
    pointer-events: auto;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 15px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    transform: scale(1.1);
}

.dots {
    display: flex;
    margin: 0 15px;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background-color: white;
    transform: scale(1.3);
}

.slide .btn {
    position: relative;
    z-index: 2;
    pointer-events: auto;
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.slide .btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Offerings Section */
.offerings {
    padding: 60px 0;
    background-color: var(--gray-color);
}

.offerings h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.offerings h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.offer-card {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.offer-card .btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 20px;
}

.offer-card .btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 15px;
}

.offer-card ul {
    margin: 15px 0;
    padding-left: 20px;
}

.offer-card ul li {
    margin-bottom: 8px;
    position: relative;
}

.offer-card ul li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.offer-card ul li a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.offer-card a.small-link {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.offer-card:hover .icon {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.offer-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.help-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.offer-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.offer-card ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.offer-card ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
}

.offer-card ul li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.offer-card .small {
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
}

/* Help Section */
.help-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

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

.help-card {
    padding: 30px;
    border-radius: 8px;
    background-color: var(--gray-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

.help-card:hover .icon {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.help-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.help-card ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
}

.help-card ul li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Useful Links */
.useful-links {
    padding: 40px 0;
    background-color: var(--primary-color);
    color: var(--light-color);
}

.useful-links h3 {
    color: var(--light-color);
    text-align: center;
    margin-bottom: 30px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.link-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: var(--light-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.link-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* References Section */
.references {
    padding: 60px 0;
    background-color: var(--gray-color);
}

.references h2 {
    text-align: center;
    margin-bottom: 30px;
}

.references p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.reference-category {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.reference-category h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.reference-category ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.reference-category ul li:last-child {
    border-bottom: none;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: var(--light-color);
}

.about h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

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

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

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

.footer-col h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-color);
    margin-left: 10px;
}

.footer-bottom a:hover {
    color: var(--light-color);
}

/* Courses Page Styles */
.page-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.courses {
    padding: 60px 0;
}

.course-category {
    margin-bottom: 60px;
}

.course-category h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.course-category h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.course-card {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.course-level {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.level {
    display: inline-block;
    background-color: var(--gray-color);
    color: var(--dark-color);
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.feature {
    text-align: center;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    display: table;
    margin: 30px auto 0;
}

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

.location {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.location h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.location ul {
    margin: 15px 0;
    padding-left: 20px;
}

.location ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
}

.location ul li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.course-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit {
    display: flex;
    align-items: center;
    background-color: var(--light-color);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.course-price {
    text-align: center;
    margin: 30px 0;
}

.price-highlight {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.option {
    text-align: center;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.option h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

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

.contact-info h2, .contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h2:after, .contact-form h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 30px;
}

.info-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    resize: vertical;
    font-family: 'Roboto', sans-serif;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(247, 164, 37, 0.2);
}

.form-group input.invalid,
.form-group textarea.invalid,
.form-group select.invalid {
    border-color: #ff3333;
    background-color: rgba(255, 51, 51, 0.05);
}

.form-group input.valid,
.form-group textarea.valid,
.form-group select.valid {
    border-color: #33cc66;
    background-color: rgba(51, 204, 102, 0.05);
}

.form-check {
    display: flex;
    align-items: flex-start;
}

.form-check input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-check label {
    font-size: 0.9rem;
}

.map-section {
    padding: 60px 0;
    background-color: var(--gray-color);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fakturacni-udaje {
    padding: 60px 0;
    background-color: var(--light-color);
}

.fakturacni-udaje h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.fakturacni-card {
    background-color: var(--gray-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.fakturacni-card p {
    margin-bottom: 10px;
}

/* Application Form Styles */
.application-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.application-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-intro {
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
}

.application-form h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.application-form h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.form-section h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.form-group {
    flex: 1;
    padding: 0 10px;
    margin-bottom: 20px;
}

.form-group.full-width {
    flex: 0 0 100%;
}

.form-help {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

#selfAssessmentSection {
    background-color: rgba(247, 164, 37, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

#selfAssessmentSection textarea {
    min-height: 150px;
}

/* Breadcrumbs Styles */
.breadcrumbs {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Course Listing Styles */
.level-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.level-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.course-item {
    display: flex;
    flex-wrap: wrap;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.course-details {
    flex: 3;
    padding-right: 20px;
}

.course-actions {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.course-details p {
    margin-bottom: 5px;
}

.btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
}

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

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

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

.contact-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.contact-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.contact-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 3px;
}

.additional-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.additional-info h3 {
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.additional-info ul {
    padding-left: 20px;
}

.additional-info ul li {
    margin-bottom: 8px;
}

.payment-info {
    background-color: rgba(247, 164, 37, 0.05);
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    border-left: 3px solid var(--primary-color);
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.radio-item {
    display: flex;
    align-items: center;
}

.radio-item input {
    margin-right: 8px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

/* Form Success Message */
.form-success {
    background-color: rgba(51, 204, 102, 0.1);
    border: 1px solid #33cc66;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
}

.form-success h3 {
    color: #33cc66;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.form-success p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.checkbox-item input {
    margin-right: 8px;
}

.form-hint {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.level-list {
    padding-left: 20px;
    margin: 10px 0 20px 0;
    list-style-type: none;
}

.level-list li {
    margin-bottom: 8px;
    padding: 8px 10px;
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.level-list li:hover {
    background-color: #edf2f7;
    transform: translateX(5px);
}

.level-list strong {
    color: var(--primary-color);
    min-width: 80px;
    display: inline-block;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn-reset {
    background-color: #f5f5f5;
    color: var(--dark-color);
}

.btn-reset:hover {
    background-color: #e0e0e0;
    color: var(--dark-color);
}

/* Mathematics Page Styles */
.math-intro {
    padding: 80px 0;
    background-color: var(--light-color);
}

.math-content {
    max-width: 60%;
}

.math-intro .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.math-image {
    flex: 0 0 40%;
    text-align: center;
}

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

.quote {
    margin: 30px 0;
    padding: 20px;
    border-left: 5px solid var(--primary-color);
    background-color: var(--gray-color);
    border-radius: 0 8px 8px 0;
}

.quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.quote cite {
    font-size: 1rem;
    color: var(--secondary-color);
}

.math-offerings {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.math-offerings h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.math-offerings h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.math-card {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.math-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.math-icon i {
    font-size: 2rem;
    color: white;
}

.math-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.math-card p {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.math-card ul {
    list-style-type: none;
    padding: 0;
}

.math-card ul li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
    position: relative;
    padding-left: 25px;
}

.math-card ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.math-testimonials {
    padding: 80px 0;
    background-color: var(--light-color);
}

.math-testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.math-testimonials h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.testimonial {
    background-color: var(--gray-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial:before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: rgba(247, 164, 37, 0.2);
}

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

.testimonial-author {
    text-align: right;
}

.math-cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
    color: white;
}

.math-cta h2 {
    margin-bottom: 20px;
}

.math-cta p {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.math-cta .btn {
    background-color: white;
    color: var(--primary-color);
}

.math-cta .btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Career Page Styles */
.career-intro {
    padding: 60px 0;
    background-color: var(--light-color);
}

.career-benefits {
    padding: 60px 0;
    background-color: #fff;
}

.job-positions {
    padding: 60px 0;
    background-color: var(--light-color);
}

.job-positions .info-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.job-positions .info-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.job-positions .info-box h4 {
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.job-positions .info-box p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.job-positions .info-box strong {
    font-weight: 600;
    color: var(--secondary-color);
}

.job-positions .info-box ul, 
.job-positions .info-box ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.job-positions .info-box li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.job-positions .info-box hr {
    margin: 30px 0;
    border: 0;
    height: 1px;
    background-color: #e0e0e0;
}

/* Courses Page Styles */
.courses {
    padding: 60px 0;
    background-color: var(--light-color);
}

.course-category {
    margin-bottom: 60px;
}

.course-category h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.course-category h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.info-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-box p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-box strong {
    font-weight: 600;
    color: var(--secondary-color);
}

.info-box ul, .info-box ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.info-box li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

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

.course-type {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.course-type h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.test-levels {
    margin-top: 50px;
}

/* Tests Page Styles */
.tests-intro {
    padding: 80px 0;
    background-color: var(--light-color);
}

.tests-intro h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.tests-intro h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.test-levels {
    margin-top: 50px;
}

.test-levels h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.level-card {
    background-color: var(--gray-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.level-header {
    background-color: var(--primary-color);
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 15px;
    text-align: center;
}

.level-content {
    padding: 20px;
}

.level-content h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.available-tests {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.available-tests h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.available-tests h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.test-card {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

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

.test-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.test-icon i {
    font-size: 2.5rem;
    color: white;
}

.test-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.test-card p {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.test-info {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.info-card {
    background-color: var(--gray-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-icon i {
    font-size: 1.8rem;
    color: white;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.test-cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
    color: white;
}

.test-cta h2 {
    margin-bottom: 20px;
}

.test-cta p {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.btn-secondary:hover {
    background-color: #c03a2b;
}

/* Team Page Styles */
.team-intro {
    padding: 80px 0;
    background-color: var(--light-color);
    text-align: center;
}

.team-intro h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-intro p {
    max-width: 800px;
    margin: 0 auto 30px;
}

.team-members {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.team-members h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.team-members h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.team-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.team-list li {
    padding: 10px 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    background-color: var(--primary-color);
    color: #fff;
}

@media (max-width: 768px) {
    .team-list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

.career-intro {
    padding: 80px 0;
    background-color: var(--light-color);
}

.career-intro h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.career-intro h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.career-intro p {
    margin-bottom: 20px;
}

.career-benefits {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.career-benefits h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.career-benefits h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.benefit-card {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.job-positions {
    padding: 80px 0;
    background-color: var(--light-color);
}

.job-positions h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.job-positions h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.job-list {
    max-width: 800px;
    margin: 0 auto;
}

.job-item {
    background-color: var(--gray-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.job-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.job-title h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.job-type {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.job-details {
    margin-bottom: 20px;
}

.job-detail {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.job-detail i {
    color: var(--primary-color);
    margin-right: 10px;
    min-width: 20px;
}

.job-description {
    margin-bottom: 20px;
}

.job-description h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.job-description ul {
    list-style-type: none;
    padding: 0;
}

.job-description ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.job-description ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

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

.career-cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
    color: white;
}

.career-cta h2 {
    margin-bottom: 20px;
}

.career-cta p {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px;
    }
    
    .banner {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .banner {
        height: 350px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .banner {
        height: 300px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .offer-grid, .help-grid, .references-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Form Success Message */
.form-success {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    border: 1px solid #c8e6c9;
}

.form-success p {
    color: #2e7d32;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Sidebar Navigation */
.page-layout {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.sidebar {
    width: 280px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-right: 30px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.sidebar h3 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    font-size: 1.2rem;
    color: var(--dark-color);
}

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

.sidebar-nav li {
    margin-bottom: 2px;
}

.sidebar-nav a {
    display: block;
    padding: 8px 10px;
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.sidebar-nav a:hover {
    background-color: #f9f9f9;
    color: var(--primary-color);
    border-left: 2px solid var(--primary-color);
    padding-left: 15px;
}

.sidebar-nav a.active {
    background-color: var(--primary-color);
    color: white;
    border-left: 2px solid var(--secondary-color);
    padding-left: 15px;
}

.sidebar-nav .nav-group {
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 0.95rem;
    padding-left: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-content {
    flex: 1;
    min-width: 0;
    padding-bottom: 30px;
}

/* Pricing table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 15px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #c7c7c7;
}

.pricing-table th,
.pricing-table td {
    padding: 14px 16px;
    border-bottom: 2px solid #c7c7c7;
    border-right: 2px solid #c7c7c7;
    text-align: left;
}

.pricing-table th:last-child,
.pricing-table td:last-child {
    border-right: none;
}

.pricing-table th {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.pricing-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

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

.note {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
}

.bullet-list {
    list-style: disc;
    padding-left: 24px;
    margin: 12px 0 18px;
}

.bullet-list li {
    margin-bottom: 6px;
}

.praha-banner {
    position: relative;
    background-image: linear-gradient(rgba(242, 153, 74, 0.78), rgba(205, 102, 35, 0.78)),
        url("../img/prague.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.praha-banner h1,
.praha-banner p {
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .page-layout {
        flex-direction: column;
    }
}
