:root {
    /* Primary Colors */
    --primary-color: #2e4c6d;
    --primary-dark: #1c3754;
    --primary-light: #3a6491;
    
    /* Secondary Colors */
    --secondary-color: #c75f00;
    --secondary-dark: #a04c00;
    --secondary-light: #e47a1e;
    
    /* Tertiary Colors */
    --tertiary-color: #396b45;
    --tertiary-dark: #2b5335;
    --tertiary-light: #488556;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f5f7f9;
    --medium-gray: #e0e5ec;
    --dark-gray: #6c757d;
    --black: #212529;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    --glass-border: 1px solid rgba(255, 255, 255, 0.18);
    --glass-border-radius: 16px;
    --glass-blur: 10px;
    
    /* Animation Variables */
    --bounce-duration: 0.6s;
    --transition-speed: 0.3s;
    
    /* Spacing */
    --section-padding: 80px 0;
    --card-padding: 25px;
    
    /* Shadows */
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Global Styles */
body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--black);
    background-color: var(--light-gray);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

p {
    color: var(--black);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

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

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

.bg-light-gradient {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

/* Glassmorphism Elements */
.glassmorphism-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: var(--glass-border-radius);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: var(--card-padding);
    transition: all var(--transition-speed) ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.glassmorphism-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Buttons */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    border-radius: 50px;
    padding: 10px 24px;
    transition: all var(--transition-speed) cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(-1px);
}

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

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

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

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

.btn-outline-light {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

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

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

.animated-btn {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.animated-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.animated-btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Navbar */
.navbar {
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--primary-dark);
}

.navbar-brand:hover {
    color: var(--primary-color);
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--primary-dark);
    margin: 0 10px;
    padding: 10px 5px !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

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

.brand-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

/* About Section */
.about-section {
    position: relative;
}

.about-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.feature-card {
    text-align: center;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

/* Courses Section */
.courses-section {
    position: relative;
}

.course-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    height: 200px;
}

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

.course-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card-content p {
    margin-bottom: 1.5rem;
}

/* Process Section */
.process-section {
    position: relative;
}

.process-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

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

/* Resources Section */
.resources-section {
    position: relative;
}

.resource-card {
    height: 100%;
    padding: 30px;
}

.resource-card h4 {
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-size: 1.4rem;
}

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

.resource-list li {
    margin-bottom: 15px;
}

.resource-list a {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.resource-list a:before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.resource-list a:hover {
    color: var(--secondary-color);
    padding-left: 25px;
}

.resource-list a:hover:before {
    left: 5px;
    color: var(--secondary-color);
}

/* Case Studies Section */
.case-studies-section {
    position: relative;
}

.case-study-tabs {
    margin-bottom: 20px;
}

.nav-tabs {
    border-bottom: 2px solid var(--medium-gray);
    margin-bottom: 20px;
}

.nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    font-weight: 600;
    color: var(--dark-gray);
    padding: 15px 20px;
    margin-bottom: -2px;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: var(--primary-color);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
    border-bottom: 2px solid var(--primary-color);
}

.tab-content .tab-pane {
    padding: 30px;
    background: var(--glass-bg);
    border-radius: var(--glass-border-radius);
    box-shadow: var(--glass-shadow);
    animation: fadeIn 0.5s ease;
}

.case-study-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.case-study-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-facts {
    padding: 20px;
}

.case-study-facts h5 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

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

.fact-list li strong {
    color: var(--primary-color);
    margin-right: 10px;
    flex-shrink: 0;
    width: 140px;
}

/* Partners Section */
.partners-section {
    position: relative;
}

.partner-slider {
    padding: 30px;
    position: relative;
}

.partners-carousel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.partner-item {
    padding: 15px;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: scale(1.05);
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

.partner-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.partner-navigation button {
    background-color: var(--primary-light);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-navigation button:hover {
    background-color: var(--primary-dark);
}

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

.testimonial-item {
    padding: 30px;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding: 0 30px;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-family: 'Georgia', serif;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text:before {
    top: -20px;
    left: 0;
}

.testimonial-text:after {
    bottom: -40px;
    right: 0;
    content: '"';
}

.testimonial-author h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Media Section */
.media-section {
    position: relative;
}

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

.media-accordion .accordion-button {
    background-color: transparent;
    font-weight: 600;
    color: var(--primary-dark);
    padding: 20px;
    box-shadow: none;
}

.media-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: transparent;
    box-shadow: none;
}

.media-accordion .accordion-button:focus {
    box-shadow: none;
}

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

.media-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.media-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.media-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-dark);
    display: block;
    margin-bottom: 5px;
}

.media-date {
    font-size: 0.9rem;
    color: var(--dark-gray);
    display: block;
    margin-bottom: 10px;
}

.media-gallery {
    padding: 30px;
}

.media-gallery h4 {
    margin-bottom: 20px;
    text-align: center;
}

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    transform: translateY(100%);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

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

.news-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card .card-image {
    position: relative;
    height: 200px;
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

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

.contact-container {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-info {
    height: 100%;
    padding: 40px;
    color: var(--black);
}

.contact-info h4 {
    margin-bottom: 25px;
    color: var(--primary-dark);
    font-size: 1.5rem;
}

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

.contact-list li {
    display: flex;
    margin-bottom: 25px;
}

.contact-list li i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-list li h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

.contact-hours h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-form {
    padding: 40px;
    background-color: var(--white);
}

.contact-form h4 {
    margin-bottom: 25px;
    color: var(--primary-dark);
    font-size: 1.5rem;
}

.form-control, .form-select {
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 3px rgba(46, 76, 109, 0.1);
    border-color: var(--primary-color);
}

.form-label {
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 8px;
}

/* Footer */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    position: relative;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

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

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.social-links a:hover {
    color: var(--white);
}

.social-links a:hover::after {
    width: 100%;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
}

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

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

.footer-newsletter input {
    border-radius: 50px 0 0 50px;
    height: 45px;
    border: none;
    padding-left: 20px;
}

.footer-newsletter button {
    border-radius: 0 50px 50px 0;
    height: 45px;
    border: none;
    background-color: var(--secondary-color);
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background-color: var(--secondary-light);
}

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

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-legal li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-legal li a:hover {
    color: var(--white);
}

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--light-gray);
}

.success-content {
    max-width: 600px;
    padding: 50px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 4rem;
    color: var(--tertiary-color);
    margin-bottom: 20px;
}

/* Privacy & Terms Pages */
.page-content {
    padding-top: 100px;
    min-height: calc(100vh - 400px);
}

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

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

/* Parallax */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-element {
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.2rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .process-image-container {
        margin-bottom: 30px;
    }
    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    .feature-card {
        margin-bottom: 30px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .footer-title {
        margin-top: 30px;
    }
    .footer-legal {
        justify-content: center;
        margin-top: 15px;
    }
    .copyright {
        text-align: center;
    }
    .partner-item {
        width: 150px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 40px 0;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .contact-form, .contact-info {
        padding: 25px;
    }
    .partner-item {
        width: 120px;
        height: 70px;
    }
   
}
.hero-section .container{
    margin-top: 200px;
}

html,body{
    overflow-x: hidden;
}
*{
    opacity: 1 !important;
}
