:root {
    --bg-primary: #fff;
    --bg-secondary: #F8FAFF;
    --accent: #2871ff;
    --heading-color: #010e22;
    --footer-bg: #010D26;
    --text-color: #616161;
    --border-color: #E6E7E9;
    --white: #fff;
    --font-heading: 'Cabin', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.5;
    background-color: var(--bg-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #1a5de0;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--white);
}


.site-header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background-color: var(--bg-primary);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 36px;
    margin-right: 10px;
}

.logo span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu .btn {
    color: #fff;
}

.nav-menu a {
    text-decoration: none;
    color: var(--heading-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--heading-color);
    cursor: pointer;
}


.hero-section {
    background-color: var(--bg-secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content .right {
    line-height: 0;
}

.hero-content .left {
    max-width: 600px;
    width: 100%;
}

.hero-content .right img {
    max-width: 550px;
    width: 100%;
}

.hero-subtitle {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text {
    margin-bottom: 30px;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}


.features-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    margin-bottom: 15px;
}


.about-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content p {
    margin-bottom: 20px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-point {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.about-point-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}


.generator-section {
    padding: 80px 0;
}

.generator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.generator-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.generator-item:hover {
    transform: translateY(-5px);
}

.generator-icon {
    font-size: 24px;
    color: var(--accent);
    margin-right: 20px;
    flex-shrink: 0;
}

.generator-text h3 {
    margin-bottom: 10px;
}


.faq-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 10px;
    display: none;
}

.faq-image {
    text-align: center;
    line-height: 0;
}

.faq-image img {
    max-width: 460px;
    width: 100%;
    border-radius: 8px;
}


.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-subtitle {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-text {
    max-width: 600px;
    margin: 0 auto 30px;
}


.site-footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 32px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    color: var(--accent);
}

.footer-description {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}


.cookie-popup {
    position: fixed;
    bottom: 15px;
    left: 15px;

    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    z-index: 1001;
    display: none;
}

.cookie-title {
    margin-bottom: 10px;
}

.cookie-text {
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.about-hero-section {
    background: linear-gradient(135deg, #F8FAFF 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('images/ai-pattern.png') no-repeat center right;
    opacity: 0.1;
}

.about-hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.about-hero-text {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    color: var(--text-color);
}

.about-stats {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}

.journey-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.journey-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.journey-text p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.journey-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.highlight-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 20px;
}

.highlight-item h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--accent);
}

.timeline-year {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.timeline-content h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.technology-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.tech-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    font-size: 50px;
    color: var(--accent);
    margin-bottom: 25px;
}

.tech-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}


.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FAFF 0%, #ffffff 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-color);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--heading-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

.thank-you-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.thank-you-message h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.contact-info-section {
    padding: 80px 0;
    background-color: var(--footer-bg);
    border-bottom: 1px solid #222222;
    color: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contact-info-item {
    text-align: center;
    padding: 40px 20px;
}

.contact-icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 20px;
}

.contact-info-item h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 22px;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}


@media (max-width: 992px) {
    .about-stats {
        gap: 40px;
    }

    .journey-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 36px;
    }

    .about-stats {
        flex-direction: column;
        gap: 30px;
    }

    .journey-highlights {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {

    .about-hero-section,
    .journey-section,
    .technology-section,
    .contact-form-section {
        padding: 60px 0;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .contact-header h1 {
        font-size: 36px;
    }
}



.policy-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.policy-update {
    color: var(--accent);
    font-weight: 500;
    font-size: 16px;
}

.policy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.policy-block {
    margin-bottom: 50px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.policy-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--heading-color);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
}

.policy-block h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--heading-color);
}

.policy-block h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: var(--heading-color);
}

.policy-block p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

.policy-block ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-block li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--text-color);
}


.cookies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.cookie-type {
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.cookie-type h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: var(--heading-color);
}

.cookies-table {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin: 25px 0;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    background: var(--accent);
    color: var(--white);
    padding: 15px 20px;
    font-weight: 600;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.table-row:hover {
    background-color: var(--bg-secondary);
}

.table-row:last-child {
    border-bottom: none;
}

.browser-instructions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.browser-item {
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 8px;
    text-align: center;
}

.browser-item h4 {
    margin: 0 0 10px 0;
    color: var(--accent);
}

.browser-item p {
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
}


@media (max-width: 768px) {
    .policy-section {
        padding: 60px 0;
    }

    .policy-header h1 {
        font-size: 36px;
    }

    .policy-block {
        padding: 20px;
        margin-bottom: 30px;
    }

    .cookies-grid {
        grid-template-columns: 1fr;
    }

    .browser-instructions {
        grid-template-columns: 1fr;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .table-header span:not(:first-child),
    .table-row span:not(:first-child) {
        padding-left: 20px;
    }
}

@media (max-width: 576px) {
    .policy-header h1 {
        font-size: 32px;
    }

    .policy-block h2 {
        font-size: 22px;
    }
}

.services-hero-section {
    background: linear-gradient(135deg, #F8FAFF 0%, #ffffff 100%);
    padding: 100px 0;
    text-align: center;
}

.services-hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.services-hero-text {
    font-size: 20px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
}

.services-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.service-stat {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}


.services-grid-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto 60px;
}

.services-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--heading-color);
    border-left: 4px solid var(--accent);
    padding-left: 20px;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 50px;
    color: var(--accent);
    margin-bottom: 25px;
}

.service-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.service-item p {
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-color);
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}


.features-showcase-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-showcase-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.feature-showcase-item:hover {
    transform: translateY(-5px);
}

.feature-showcase-icon {
    font-size: 40px;
    color: var(--accent);
    flex-shrink: 0;
}

.feature-showcase-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.feature-showcase-content p {
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

.feature-showcase-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-showcase-content li {
    padding: 5px 0;
    color: var(--text-color);
    position: relative;
    padding-left: 20px;
}

.feature-showcase-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}


.services-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent) 0%, #1a5de0 100%);
    color: var(--white);
    text-align: center;
}

.services-cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--white);
}

.services-cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--accent);
}


@media (max-width: 992px) {
    .services-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-showcase {
        grid-template-columns: 1fr;
    }

    .services-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .services-hero-title {
        font-size: 36px;
    }

    .services-row {
        grid-template-columns: 1fr;
    }

    .services-stats {
        flex-direction: column;
        gap: 30px;
    }

    .feature-showcase-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {

    .services-hero-section,
    .services-grid-section,
    .features-showcase-section,
    .services-cta-section {
        padding: 60px 0;
    }

    .services-hero-title {
        font-size: 32px;
    }

    .services-cta-content h2 {
        font-size: 32px;
    }

    .category-title {
        font-size: 24px;
    }
}











































@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .faq-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content .left {
        max-width: 420px;
    }

    .hero-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        flex-direction: column;
        gap: 50px;
    }

    .hero-content .left {
        max-width: 100%;
    }

    .hero-content .right img {
        max-width: 350px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .generator-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .about-points {
        grid-template-columns: 1fr;
    }
}