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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a1929 0%, #1a2332 25%, #0f1419 50%, #1e2a3a 75%, #0a1929 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 119, 190, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 150, 136, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(30, 144, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}


header {
    background: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(0, 191, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #00bfff;
    z-index: 101;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
    background: transparent;
    border: none;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #00bfff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #b0c4de;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 15px;
    border-radius: 5px;
}

nav a:hover,
nav a.active {
    color: #00bfff;
    background: rgba(0, 191, 255, 0.1);
}


.hero {
    text-align: center;
    padding: 120px 20px;
    margin-bottom: 60px;
    background-image: url('image/fishing-rod-on-the-background-of-the-lake-generative-ai_472916-7090.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%);
    z-index: 1;
}

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

.hero h1 {
    font-size: 3.5em;
    color: #00bfff;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3em;
    color: #94a3b8;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}


.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #00bfff 0%, #0096c7 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #00bfff 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, #009688 0%, #00796b 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.4);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #00bcd4 0%, #009688 100%);
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.6), 0 0 20px rgba(0, 150, 136, 0.4);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, #7b2cbf 0%, #5a189a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(123, 44, 191, 0.4);
}

.btn-accent:hover {
    background: linear-gradient(135deg, #9d4edd 0%, #7b2cbf 100%);
    box-shadow: 0 6px 20px rgba(123, 44, 191, 0.6), 0 0 20px rgba(123, 44, 191, 0.4);
    transform: translateY(-2px);
}

.btn-bonus {
    background: linear-gradient(135deg, #00bfff 0%, #00d4ff 100%) !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4) !important;
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2s ease-in-out infinite;
}

.btn-bonus::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-bonus:hover::before {
    left: 100%;
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 191, 255, 0.6) !important;
    background: linear-gradient(135deg, #00d4ff 0%, #00bfff 100%) !important;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 191, 255, 0.6);
    }
}


.features {
    padding: 60px 20px;
    margin-bottom: 60px;
}

.features h2 {
    text-align: center;
    font-size: 2.5em;
    color: #00bfff;
    margin-bottom: 50px;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.9) 0%, rgba(15, 25, 40, 0.9) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.05) 0%, rgba(0, 150, 136, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    border-color: #00d4ff;
}

.feature-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #00bfff;
    margin-bottom: 15px;
    font-size: 1.5em;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.feature-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.feature-link:hover {
    color: #00ffff;
}


.about-preview {
    padding: 60px 20px;
    margin-bottom: 60px;
}

.about-content {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.2);
    text-align: center;
}

.about-content h2 {
    color: #00bfff;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.about-content p {
    color: #cbd5e1;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


.article-container {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 191, 255, 0.2);
}

.article-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 191, 255, 0.3);
}

.article-header h1 {
    color: #00bfff;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.article-meta {
    color: #94a3b8;
    font-size: 0.95em;
}

.article-content {
    color: #cbd5e1;
    line-height: 1.8;
}

.article-content h2 {
    color: #00bfff;
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-content h3 {
    color: #00d4ff;
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content p {
    margin-bottom: 20px;
    font-size: 1.05em;
}

.article-content ul,
.article-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.article-content li {
    margin-bottom: 10px;
    color: #cbd5e1;
}

.article-content strong {
    color: #00bfff;
}


.contact-section {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 191, 255, 0.2);
}

.contact-section h1 {
    color: #00bfff;
    margin-bottom: 10px;
    font-size: 2.5em;
}

.subtitle {
    color: #94a3b8;
    margin-bottom: 30px;
    font-size: 1.1em;
}

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

.contact-card {
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.9) 0%, rgba(15, 25, 40, 0.9) 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #00bfff;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.05) 0%, rgba(0, 150, 136, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    border-left-color: #00d4ff;
}

.contact-card h3 {
    color: #00bfff;
    margin-bottom: 15px;
    font-size: 1.3em;
    position: relative;
    z-index: 1;
}

.contact-card p {
    margin-bottom: 10px;
    color: #cbd5e1;
    position: relative;
    z-index: 1;
}

.contact-card a {
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-card a:hover {
    color: #00ffff;
}

.contact-form {
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.9) 0%, rgba(15, 25, 40, 0.9) 100%);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    border: 1px solid rgba(0, 191, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.contact-form h2 {
    color: #00bfff;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #94a3b8;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(10, 20, 35, 0.8);
    border: 2px solid rgba(0, 191, 255, 0.3);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    color: #e0e0e0;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00bfff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2), inset 0 0 5px rgba(255, 255, 255, 0.05);
    background: rgba(15, 25, 40, 0.9);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #00bfff;
}

.form-group small {
    color: #64748b;
    font-size: 0.85em;
    display: block;
    margin-top: 5px;
}

.form-group label a {
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s;
}

.form-group label a:hover {
    color: #00ffff;
}


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

.map-container h2 {
    text-align: center;
    margin-bottom: 25px;
}

.google-map {
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.9) 0%, rgba(15, 25, 40, 0.9) 100%);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.google-map iframe {
    border-radius: 10px;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.3s;
}

.google-map:hover iframe {
    transform: scale(1.01);
}


footer {
    background: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 0 20px;
    margin-top: 60px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    border-top: 2px solid rgba(0, 191, 255, 0.3);
}

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

.footer-section h4 {
    color: #00bfff;
    margin-bottom: 15px;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #b0c4de;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    color: #00bfff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 191, 255, 0.2);
}

.footer-bottom-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #94a3b8;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-bottom a:hover {
    color: #00bfff;
}

.fs-note {
    font-size: 0.9em;
    color: #64748b;
    margin-top: 15px;
    font-style: italic;
}

.fs-note strong {
    color: #00bfff;
}


.accordion {
    margin: 30px 0;
}

.accordion-item {
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.9) 0%, rgba(15, 25, 40, 0.9) 100%);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s;
}

.accordion-item:hover {
    border-color: rgba(0, 191, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 191, 255, 0.05);
    transition: all 0.3s;
}

.accordion-header:hover {
    background: rgba(0, 191, 255, 0.1);
}

.accordion-header h3 {
    color: #00bfff;
    margin: 0;
    font-size: 1.3em;
}

.accordion-icon {
    color: #00bfff;
    font-size: 1.5em;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding: 20px;
}

.accordion-content p,
.accordion-content ul,
.accordion-content ol {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 15px;
}

.accordion-content ul,
.accordion-content ol {
    margin-left: 30px;
}

.accordion-content li {
    margin-bottom: 10px;
}


.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(20, 30, 50, 0.5);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.data-table thead {
    background: rgba(0, 191, 255, 0.2);
}

.data-table th {
    padding: 15px;
    text-align: left;
    color: #00bfff;
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 191, 255, 0.3);
}

.data-table td {
    padding: 12px 15px;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
}

.data-table tbody tr {
    transition: all 0.3s;
}

.data-table tbody tr:hover {
    background: rgba(0, 191, 255, 0.05);
}

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


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

.stat-card {
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.9) 0%, rgba(15, 25, 40, 0.9) 100%);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(0, 191, 255, 0.2);
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 191, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat-card .stat-number {
    font-size: 2.5em;
    color: #00bfff;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-card .stat-label {
    color: #94a3b8;
    font-size: 0.95em;
}


.info-box {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, rgba(0, 150, 136, 0.1) 100%);
    border-left: 4px solid #00bfff;
    padding: 20px;
    border-radius: 5px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.info-box h4 {
    color: #00bfff;
    margin-bottom: 10px;
}

.info-box p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.8;
}

.info-box.warning {
    border-left-color: #ffa500;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
}

.info-box.warning h4 {
    color: #ffa500;
}

.info-box.success {
    border-left-color: #00d4ff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 191, 255, 0.1) 100%);
}


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


.content-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 191, 255, 0.2);
    transition: transform 0.3s;
}

.content-image:hover {
    transform: scale(1.02);
}

.image-container {
    margin: 30px 0;
    text-align: center;
}

.image-container img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 191, 255, 0.2);
}

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

.image-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 191, 255, 0.2);
    transition: transform 0.3s;
}

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

.image-grid-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 191, 255, 0.2);
}

.side-image {
    float: right;
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 0 20px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 191, 255, 0.2);
}

@media (max-width: 768px) {
    .side-image {
        float: none;
        max-width: 100%;
        margin: 20px 0;
    }
}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .hero-bonus {
        padding: 15px 20px !important;
        margin: 20px auto !important;
        max-width: 100% !important;
    }

    .hero-bonus p {
        font-size: 0.9em !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-bonus {
        width: 100%;
        max-width: 300px;
    }

    .features-grid,
    .contact-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .article-container,
    .contact-section,
    .about-content {
        padding: 20px;
    }

    .article-header h1 {
        font-size: 2em;
    }

    nav ul {
        justify-content: center;
    }

    
    .article-content,
    .article-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .data-table {
        font-size: 0.75em;
        min-width: 600px;
        width: 100%;
        display: table;
    }

    .data-table th,
    .data-table td {
        padding: 10px 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    
    .data-table th:first-child,
    .data-table td:first-child {
        position: sticky;
        left: 0;
        background: rgba(20, 30, 50, 0.98);
        z-index: 2;
        min-width: 120px;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    }

    .data-table thead th:first-child {
        background: rgba(0, 191, 255, 0.3);
        z-index: 3;
    }

    
    h1, h2, h3, h4 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.2;
    }

    .hero h1 {
        font-size: 2em;
        padding: 0 10px;
    }

    .features h2,
    .about-content h2 {
        font-size: 1.8em;
        padding: 0 10px;
    }

    .article-header h1 {
        font-size: 1.8em;
        padding: 0 10px;
    }

    .article-content h2 {
        font-size: 1.5em;
        padding: 0 10px;
        margin-top: 30px;
    }

    .article-content h3 {
        font-size: 1.2em;
        padding: 0 10px;
    }

    .accordion-header h3 {
        font-size: 1em;
        padding-right: 40px;
    }

    .stat-card .stat-number {
        font-size: 2em;
    }

    
    .container {
        padding: 0 15px;
    }

    .article-container,
    .contact-section,
    .about-content {
        padding: 15px;
        margin: 0 -15px;
    }

    
    .menu-toggle {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 25, 41, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 100;
        overflow-y: auto;
    }

    nav ul.active {
        right: 0;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 191, 255, 0.1);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        width: 100%;
        padding: 15px 20px;
        font-size: 1em;
        text-align: left;
        border-radius: 0;
        transition: all 0.3s;
    }

    nav a:hover,
    nav a.active {
        background: rgba(0, 191, 255, 0.15);
        color: #00bfff;
        padding-left: 25px;
    }

    
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .logo {
        font-size: 1.2em;
    }

    
    .image-container {
        margin: 20px -15px;
        padding: 0 15px;
    }

    .content-image {
        width: 100%;
        max-width: 100%;
    }

    .side-image {
        float: none;
        max-width: 100%;
        margin: 20px 0;
    }

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

    .form-group input,
    .form-group textarea {
        font-size: 16px; 
    }

    
    .btn {
        width: 100%;
        max-width: 100%;
        padding: 12px 20px;
        font-size: 0.95em;
    }

    
    .feature-card,
    .contact-card,
    .stat-card {
        padding: 20px 15px;
    }

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

    .accordion-header {
        padding: 15px;
    }

    .accordion-content {
        padding: 15px;
    }

    
    .hero {
        padding: 60px 15px;
        min-height: 400px;
    }

    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .footer-section ul {
        text-align: center;
    }
}


@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8em;
    }

    .features h2,
    .about-content h2 {
        font-size: 1.5em;
    }

    .article-header h1 {
        font-size: 1.5em;
    }

    .article-content h2 {
        font-size: 1.3em;
    }

    .data-table {
        font-size: 0.7em;
        min-width: 500px;
    }

    .data-table th,
    .data-table td {
        padding: 8px 6px;
    }
}

