/* CSS Variables */
:root {
    --header-color: #426666;
    --bg-color: #1F4244;
    --accent-color: #FFE059;
    --text-color: #ffffff;
    --secondary-gradient-start: rgba(32, 65, 75, 1);
    --secondary-gradient-end: rgba(51, 93, 102, 1);
    --primary-gradient-start: rgba(150, 109, 38, 1);
    --primary-gradient-end: rgba(213, 174, 112, 1);
    --max-content-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

/* Typography */
h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Header Styles */
header {
    background-color: var(--header-color);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.disclaimer {
    text-align: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu li {
margin: 0 !important;
padding: 0 !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Navigation */
nav {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.nav-menu li::before {
    all: unset !important;
}

.nav-menu li a {
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-menu li a.active {
    background-color: var(--accent-color);
    color: var(--bg-color);
    font-weight: 700;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-secondary {
    background: linear-gradient(180deg, var(--secondary-gradient-start) 0%, var(--secondary-gradient-end) 100%);
    color: var(--text-color);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(180deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    color: var(--text-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

/* Burger Menu */
.burger-menu {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Content */
main {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Buttons Container */
.cta-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

th,
td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    background-color: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    color: var(--accent-color);
}

tr:last-child td {
    border-bottom: none;
}

/* Lists */
ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Footer */
footer {
    background-color: var(--header-color);
    padding: 2rem 1rem;
    margin-top: 3rem;
}

.footer-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li::before {
    display: none;
}

.footer-section a {
    color: var(--text-color);
    padding: 0.25rem 0;
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

footer li {
    margin-left: 0;
    padding-left: 0;
}

.payment-methods {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Navigation */
.mobile-menu {
    z-index: 1111111;
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--header-color);
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

@media (max-width: 480px) {
    .mobile-menu {
        top: 137px;
    }

    .header-buttons {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 15px;
    }

    .header-buttons .btn {
        width: 100%;
    }

    .header-container {
        flex-wrap: wrap;
    }
}

.mobile-menu ul li {
    padding: 0;
    margin-bottom: 0.5rem;
}

.mobile-menu ul li::before {
    display: none;
}

.mobile-menu ul li a {
    display: block;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: var(--text-color);
}

.mobile-menu ul li a.active {
    background-color: var(--accent-color);
    color: var(--bg-color);
    font-weight: 700;
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    position: relative;
    max-width: 1200px;
    margin: 4rem auto;
}

.hero-slider .swiper {
    width: 100%;
    height: 200px;
    border-radius: 0;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slider .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem 2rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hero-slider .slide-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-slider .slide-content .btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}

/* Swiper Navigation */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-top: -22px;
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--accent-color);
}

/* Responsive Slider */
@media (min-width: 768px) {
    .hero-slider .swiper {
        height: 300px;
    }
    
    .hero-slider .slide-content h2 {
        font-size: 2rem;
    }
    
    .hero-slider .slide-content .btn {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-slider .swiper {
        height: 400px;
    }
    
    .hero-slider .slide-content h2 {
        font-size: 2.5rem;
    }
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Image Styles */
.section-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin: 2rem 0;
}

.section-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-gallery .section-image {
    margin: 1rem 0;
}

@media (min-width: 1320px) {
    nav {
        display: block;
    }

    .burger-menu {
        display: none;
    }
}

/* Responsive Design - Mobile */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    main {
        padding: 3rem 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-buttons .btn {
        padding: 0.75rem 1.5rem;
    }
}

/* Responsive Design - Tablet */
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .content-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Responsive Tables */
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
    }

    .table-wrapper {
        overflow-x: auto;
    }
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

/* Special Sections */
.expert-review {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid var(--accent-color);
}

.faq-section {
    margin-top: 3rem;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.faq-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles */
*:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

