/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

:target {
    scroll-margin-top: 90px;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f5f7fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Section */
.header {
    background-color: #1a1a1a;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    position: relative;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #87CEFA;
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #87CEFA;
}

.cta-button {
    background-color: #821717;
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #ad1f1f;
    transform: scale(1.05);
}

/* Main Section */
main {
    flex: 1 0 auto;
    padding-bottom: 20px;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #00060D 0%, #023059 50%, #011126 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    position: relative;
}

/* Уменьшенный отступ для main внутри #hero */
#hero main {
    padding-top: 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    text-align: center;
    max-width: 1280px;
    animation: fadeIn 1s ease-in;
    position: relative;
    z-index: 1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Контейнер для анимации скорости */
.speed-container {
    margin-bottom: 40px;
}

.speed-container h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.speed-scale {
    position: relative;
    width: 100%;
    max-width: 1280px;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin: 0 auto;
    overflow: hidden;
}

.scale-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #e25822;
    border-radius: 4px;
    animation: fillScale 5s linear forwards;
}

@keyframes fillScale {
    0% { width: 0; }
    100% { width: 100%; }
}

.rocket {
    position: absolute;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url('../img/rocket.png');
    background-size: contain;
    background-repeat: no-repeat;
    animation: moveRocket 5s linear forwards;
}

@keyframes moveRocket {
    0% { left: 0; }
    100% { left: calc(100% - 20px); }
}

.scale-labels {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #fff;
    margin-top: 10px;
}

.scale-labels span {
    flex: 1;
    text-align: center;
}

.scale-labels span:nth-child(1) { text-align: left; }
.scale-labels span:nth-child(3) { text-align: right; }

.speed-value {
    margin-top: 15px;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speed-value strong {
    font-weight: 600;
}

.speed-value .speed-circle {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #00cc00;
    border-radius: 50%;
    margin-right: 8px;
    animation: blink-circle 1.5s infinite;
}

@keyframes blink-circle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Стили для текста и кнопки */
#hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    pointer-events: auto;
}

#hero p {
    font-size: 24px;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 400;
    pointer-events: auto;
    text-align: left;
}

.hero-button {
    display: inline-block;
    background-color: #ff4d4d;
    color: #fff;
    margin-top: 25px;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 28px;
    font-weight: 600;
    transition: background-color 0.3s;
    pointer-events: auto;
    z-index: 2;
}

.hero-button:hover {
    background-color: #e63939;
}

/* Стили для анимации печати */
.typing-text {
    display: inline-block;
    color: #e25822;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
}

.typing-text::after {
    content: '|';
    display: inline-block;
    color: #e25822;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Общие стили для секций */
.section {
    padding: 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 36px;
    text-align: center;
    color: #333;
}

.section h3 {
    font-size: 24px;
    margin: 20px 0 10px;
    color: #87CEFA;
}

.section p, .section ul {
    font-size: 18px;
    margin-bottom: 20px;
}

.section ul {
    list-style: none;
}

.section li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Pricing Section */
.pricing-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: #333;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: #fff;
    border: 1px solid #1959d1;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card .discount-label {
    position: absolute;
    top: -10px;
    left: -10px;
    background-color: #004d00;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transform: rotate(-45deg);
}

.pricing-card .hot-label {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ff4444;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transform: rotate(45deg);
}

.pricing-card h3 {
    font-size: 24px;
    color: #000;
    font-weight: 700;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card li {
    font-size: 16px;
    margin-bottom: 1px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-card li svg {
    width: 20px;
    height: 20px;
}

.pricing-card .duration {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.pricing-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #0055FF;
    margin-bottom: 2px;
}

.pricing-card .price-hot {
    font-size: 28px;
    font-weight: 700;
    color: #e25822;
    margin-bottom: 2px;
}

.pricing-card .small-text {
    font-size: 12px;
    color: #666;
    margin-bottom: 1px;
}

.get-test {
    text-align: center; /* Центрирует содержимое текста */
    margin: 0 auto;     /* Центрирует сам блок, если задана ширина */
    max-width: 500px;   /* Можно задать ширину для ограничения размера */
}

.pricing-button {
    display: inline-block;
    background-color: #821717;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.pricing-button:hover {
    background-color: #ad1f1f;
    transform: scale(1.05);
}

/* Contacts Section */
.contacts-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-button {
    display: inline-block;
    background-color: #87CEFA;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    text-align: center;
    width: 300px;
    max-width: 100%;
}

.contact-button:hover {
    background-color: #ff4444;
    transform: scale(1.05);
}

/* Slider */
.slider-container {
    position: relative;
    max-width: 1280px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.slider-wrapper {
    overflow: hidden;
    flex-grow: 1;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: relative;
    color: #fff;
}

.slide.active {
    opacity: 1;
}

.slide h3 {
    color: #87CEFA;
}

.slider-prev, .slider-next {
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.2s;
}

.slider-prev:hover, .slider-next:hover {
    transform: scale(1.1);
}

.slider-prev svg, .slider-next svg {
    width: 40px;
    height: 40px;
}

.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    background-color: #666;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #87CEFA;
}

/* Footer Section */
.footer {
    flex-shrink: 0;
    background-color: #1a1a1a;
    padding: 40px 20px;
    color: #fff;
    width: 100%;
}

.footer .small-text {
    font-size: 12px;
    color: #666;
    text-decoration: none;
}

.footer .doc-text {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}

.footer .doc-text:hover {
    color: #bdddff;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #87CEFA;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-telegram {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-telegram:hover {
    color: #87CEFA;
}

.footer-left p {
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer-payment {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-payment img {
    width: 55px;
    height: 40px;
    object-fit: contain;
}

.footer-payment img[alt="tbank"] {
    width: 75px;
    height: 40px;
}

/* Offer Section */
#offer {
    background-color: #f5f7fa;
    padding: 20px 20px;
    color: #000;
    text-align: center;
}

#offer h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

.offer-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    text-align: left;
}

.offer-content p {
    margin-bottom: 20px;
    color: #000;
}

.offer-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 30px 0 15px;
}

.offer-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.offer-content ul li {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}

/* Agreement Section */
#agreement {
    background-color: #f5f7fa;
    padding: 20px 20px;
    color: #000;
    text-align: center;
}

#agreement h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

.agreement-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    text-align: left;
}

.agreement-content p {
    color: #000;
    margin-bottom: 20px;
}

.agreement-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 30px 0 15px;
}

.agreement-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.agreement-content ul li {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}

/* Policy Section */
#policy {
    background-color: #f5f7fa;
    padding: 20px 20px;
    color: #000;
    text-align: center;
}

#policy h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    text-align: left;
}

.policy-content p {
    color: #000;
    margin-bottom: 20px;
}

.policy-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 30px 0 15px;
}

.policy-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-content ul li {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}

/* Privacy Section */
#privacy {
    background-color: #f5f7fa;
    padding: 20px 20px;
    color: #000;
    text-align: center;
}

#privacy h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    text-align: left;
}

.privacy-content p {
    color: #000;
    margin-bottom: 20px;
}

.privacy-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 30px 0 15px;
}

.privacy-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-content ul li {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}

/* FAQ Section */
#faq {
    background-color: #f5f7fa;
    padding: 40px 20px;
    color: #000;
    text-align: center;
}

#faq h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    text-align: left;
}

.faq-content p {
    color: #000;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: #87CEFA;
}

.faq-question {
    background-color: #e0e0e0;
    color: #000;
    padding: 15px;
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    outline: none;
    position: relative;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #d0d0d0;
}

.faq-question::after {
    content: '⮞';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
    content: '⮟';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    background-color: #fff;
    color: #000;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 15px;
}

.faq-content a {
    color: #00003d;
    text-decoration: underline;
}

.faq-content a:hover {
    color: #3030b5;
}

.faq-contact {
    margin-top: 30px;
    font-style: italic;
}

/* 404 Section */
#not-found {
    background-color: #f5f7fa;
    padding: 60px 20px;
    text-align: center;
    color: #000;
    min-height: calc(100vh - 160px);
}

#not-found h1 {
    font-size: 120px;
    font-weight: 700;
    color: #0e3378;
    margin: 0;
    line-height: 1;
}

#not-found h2 {
    font-size: 36px;
    font-weight: 600;
    margin: 20px 0;
    color: #000;
}

#not-found p {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    max-width: 600px;
    margin: 0 auto 30px;
}

#not-found .btn-home {
    display: inline-block;
    background-color: #0e3378;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

#not-found .btn-home:hover {
    background-color: #3574e8;
}

/* Start Section */
#start {
    padding: 40px 20px;
    text-align: left;
    background: none;
}

.start-content {
    max-width: 800px;
    margin: 0 auto;
}

#start h2 {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    margin-bottom: 30px;
}

.start-step {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.start-step h1 {
    font-size: 80px;
    margin: 0;
    color: #333;
    font-weight: 700;
    pointer-events: auto;
    line-height: 1;
}

.start-step p {
    font-size: 24px;
    color: #555;
    margin: 0;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
}

.start-step a {
    font-size: 24px;
    color: #ff4d4d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    pointer-events: auto;
}

.start-step a:hover {
    color: #e63939;
}

/* Guide Section */
#guide {
    text-align: left;
    background: none;
}

.guide-content {
    max-width: 800px;
    margin: 0 auto;
}

#guide h1 {
    font-size: 32px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

#guide h3 {
    font-size: 24px;
    color: #333;
    font-weight: 600;
    margin: 30px 0 15px;
}

#guide h4 {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin: 20px 0 10px;
}

#guide ul, #guide ol {
    margin: 15px 0;
    padding-left: 20px;
}

#guide ul {
    list-style-type: disc;
}

#guide ol {
    list-style-type: decimal;
}

#guide ul li, #guide ol li {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

#guide a, #guide ul a, #guide ol a {
    color: #00003d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

#guide p {
    max-width: 800px;
    word-wrap: break-word;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

#guide .config-link:hover {
    color: #323332;
    cursor: pointer;
}

#guide p a:hover, #guide ul a:hover, #guide ol a:hover {
    color: #2a2a92;
}

#guide code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    background-color: #f5f5f5;
    padding: 2px 4px;
    border-radius: 3px;
    word-break: break-all;
}

#guide p strong {
    font-weight: 600;
    color: #333;
}

.guide-content h1, .guide-content h3, .guide-content h4 {
    margin-top: 20px;
}

/* Кнопка прокрутки вверх */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #ff4d4d;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: background-color 0.3s, opacity 0.3s;
    opacity: 0.8;
}

.scroll-top:hover {
    background-color: #e63939;
    opacity: 1;
}

.scroll-top.visible {
    display: block;
}

/* Адаптивность */
@media (max-width: 768px) {
    .header {
        height: 70px;
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    main {
        padding-top: 80px;
    }
    #hero main {
        padding-top: 0;
    }
    :target {
        scroll-margin-top: 80px;
    }
    .logo {
        margin-bottom: 10px;
    }
    nav {
        margin: 10px 0;
    }
    nav a {
        margin: 0 10px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero h2 {
        font-size: 20px;
    }
    .section {
        padding: 30px 20px;
    }
    .section h2 {
        font-size: 28px;
    }
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        width: 100%;
        max-width: 400px;
    }
    .slider-container {
        margin: 15px 10px;
        gap: 15px;
    }
    .slide {
        padding: 15px;
    }
    .slider-prev, .slider-next {
        width: 36px;
        height: 36px;
    }
    .slider-prev svg, .slider-next svg {
        width: 18px;
        height: 18px;
    }
    .dot {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-right {
        align-items: center;
    }
    #offer h1, #agreement h1, #policy h1, #privacy h1, #faq h1 {
        font-size: 28px;
    }
    .offer-content, .agreement-content, .policy-content, .privacy-content, .faq-content {
        font-size: 16px;
    }
    .faq-question {
        font-size: 16px;
        padding: 10px;
    }
    .faq-answer {
        padding: 0 10px;
    }
    .faq-item.open .faq-answer {
        padding: 10px;
    }
    #not-found {
        padding: 40px 20px;
    }
    #not-found h1 {
        font-size: 80px;
    }
    #not-found h2 {
        font-size: 28px;
    }
    #not-found p {
        font-size: 16px;
    }
    #not-found .btn-home {
        font-size: 16px;
        padding: 10px 20px;
    }
    #start h2 {
        font-size: 24px;
    }
    .start-step h1 {
        font-size: 50px;
    }
    .start-step p {
        font-size: 18px;
    }
    .start-step {
        gap: 8px;
        margin-bottom: 15px;
    }
    #guide h1 {
        font-size: 28px;
    }
    #guide h3 {
        font-size: 20px;
    }
    #guide h4 {
        font-size: 18px;
    }
    #guide p, #guide ul li, #guide ol li {
        font-size: 14px;
    }
    #guide .meta {
        font-size: 12px;
    }
    #guide code {
        font-size: 12px;
    }
    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    .hero h2 {
        font-size: 16px;
    }
    .section h2 {
        font-size: 24px;
    }
    .section p, .section ul {
        font-size: 16px;
    }
    .typing-text {
        font-size: 28px;
    }
}