* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

body {
    background-color: #0a0b0f;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    color: white;
    padding: 140px 0 0 0;
}

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: #0a0b0f;
}

body::-webkit-scrollbar-thumb {
    background: #2a2b35;
    border-radius: 6px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #3a3b45;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #2a2b35 #0a0b0f;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(14, 15, 19, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 9px;
}

.login-button {
    padding: 10px 25px;
    background: white;
    color: black;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.button-group {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 40px;
}

.action-button {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.action-button.primary {
    background-color: white;
    color: black;
}

.action-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.advantages-section {
    display: flex;
    gap: 20px;
    max-width: 800px;
    width: 100%;
    padding: 0 40px;
    margin-bottom: 60px;
}

.advantages-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.advantage-card {
    background: linear-gradient(135deg, #1a1b20 0%, #2a2b35 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: white;
}

.advantage-card p {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.6;
}

.advantage-icon {
    position: absolute;
    bottom: -15px;
    right: -15px;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.05);
}

.advantage-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.2;
    font-size: initial;
}

.advantage-card.tall {
    min-height: 350px;
}

.advantage-card.short {
    min-height: 200px;
}

.pricing-section {
    width: 100%;
    max-width: 900px;
    padding: 60px 40px;
    margin-bottom: 60px;
}

.promo-section {
    width: 100%;
    max-width: 1000px;
    padding: 0 40px;
    margin-bottom: 80px;
}

.promo-card {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
}

.promo-icon {
    font-size: 80px;
    flex-shrink: 0;
}

.promo-content {
    flex: 1;
}

.promo-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.promo-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.promo-button {
    padding: 15px 35px;
    background: white;
    color: #7c3aed;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.trust-section {
    width: 100%;
    padding: 80px 0;
    margin-bottom: 60px;
    overflow: hidden;
}

.trust-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.trust-cards-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    cursor: grab;
    scrollbar-width: thin;
    scrollbar-color: #2a2b35 transparent;
}

.trust-cards-wrapper::-webkit-scrollbar {
    height: 8px;
}

.trust-cards-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.trust-cards-wrapper::-webkit-scrollbar-thumb {
    background: #2a2b35;
    border-radius: 4px;
}

.trust-cards-wrapper::-webkit-scrollbar-thumb:hover {
    background: #3a3b45;
}

.trust-cards-wrapper:active {
    cursor: grabbing;
}

.trust-cards {
    display: flex;
    gap: 30px;
    padding: 0 40px;
    will-change: transform;
}

.trust-card {
    min-width: 320px;
    background: linear-gradient(135deg, #1a1b20 0%, #2a2b35 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.trust-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    flex-shrink: 0;
}

.trust-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.review-stars {
    font-size: 14px;
    color: #ffd700;
}

.review-text {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.6;
    margin: 0;
}

.trust-card p {
    display: block;
}

.pricing-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing-tabs::before {
    content: '';
    position: absolute;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: calc(100% - 8px);
    width: calc(33.333% - 4px);
    left: 4px;
    top: 4px;
    z-index: 0;
}

.pricing-tabs[data-active="vds"]::before {
    transform: translateX(0);
}

.pricing-tabs[data-active="games"]::before {
    transform: translateX(calc(100% + 4px));
}

.pricing-tabs[data-active="bots"]::before {
    transform: translateX(calc(200% + 8px));
}

.pricing-tab {
    padding: 12px 30px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #a0a0a0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
}

.pricing-tab.active {
    color: black;
}

.pricing-cards {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.pricing-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: auto;
    min-height: 500px;
}

.pricing-content .pricing-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.pricing-content .pricing-card:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

.pricing-content .pricing-card:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / 3;
}

.pricing-content.active {
    display: grid;
    position: relative;
    animation: slideInFromRight 0.5s ease forwards;
}

/* Тарифы для ботов: три равные карточки без асимметричной сетки. */
.pricing-content.bots-pricing {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 1fr;
    gap: 18px;
    min-height: 0;
}

.bot-pricing-cards {
    min-height: 0;
}

.bots-pricing .pricing-card,
.bots-pricing .pricing-card:nth-child(1),
.bots-pricing .pricing-card:nth-child(2),
.bots-pricing .pricing-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    padding: 28px;
}

.bots-pricing .pricing-card.featured {
    background: linear-gradient(145deg, #2e1b49 0%, #242530 55%, #1a1b20 100%);
    border-color: rgba(196, 181, 253, 0.8);
}

.bots-pricing .featured-badge {
    top: 16px;
    right: 16px;
    left: auto;
    transform: none;
    background: #c4b5fd;
    padding: 5px 10px;
}

.bots-pricing .pricing-card h3 {
    font-size: 21px;
    margin-bottom: 16px;
}

.bots-pricing .price {
    margin-bottom: 20px;
}

.bots-pricing .features {
    margin-bottom: 20px;
}

.bots-pricing .pricing-button {
    margin-top: auto;
}

.pricing-content.exit {
    display: grid;
    position: absolute;
    animation: slideOutToLeft 0.5s ease forwards;
    pointer-events: none;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutToLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

.pricing-card {
    background: linear-gradient(135deg, #1a1b20 0%, #2a2b35 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    position: relative;
}

.pricing-card.featured {
    border-color: white;
}

/* Анимация появления элементов при скролле */
.fade-in-element {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-element.visible {
    opacity: 1;
    transform: scale(1);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: black;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.price span {
    font-size: 16px;
    color: #a0a0a0;
    font-weight: 400;
}

.features {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    padding: 10px 0;
    color: #a0a0a0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features li:last-child {
    border-bottom: none;
}

.pricing-button {
    width: 100%;
    padding: 12px;
    background: white;
    color: black;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.pricing-button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.footer {
    width: 100%;
    background-color: rgba(14, 15, 19, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.footer-center {
    display: flex;
    justify-content: center;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.footer-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.copyright {
    color: #a0a0a0;
    font-size: 14px;
    margin: 0;
}

.header-text {
    align-self: center;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 0 20px;
}

.header-normal {
    color: white;
}

.header-highlight {
    color: black;
    background-color: white;
    padding: 2px 20px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 250px;
    text-align: center;
    font-weight: 700;
}

#animatedText {
    display: inline-block;
}

.subheader-text {
    align-self: center;
    font-size: 18px;
    color: #a0a0a0;
    margin-bottom: 40px;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    padding: 50px 20px;
}

.rainbow-arc {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 90px;
    gap: 10px;
}

.rainbow-arc svg {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: auto;
    z-index: 1;
}

.rainbow-arc svg path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.rainbow-arc svg path.draw {
    animation: drawArc 1.5s ease-out forwards;
}

@keyframes drawArc {
    from {
        stroke-dashoffset: 1;
        opacity: 0;
    }
    to {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

.title {
    font-size: 48px;
    font-weight: 700;
    z-index: 10;
    text-align: center;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    color: #a0a0a0;
    z-index: 10;
    text-align: center;
}

.team-members {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: -150px auto 0;
    z-index: 5;
}

.top-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
}

.bottom-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1b20 0%, #2a2b35 100%);
    border: 3px solid white;
}

.name {
    font-size: 14px;
    color: #a0a0a0;
    text-align: center;
}

.cta-button {
    display: block;
    margin: 60px auto 0;
    padding: 15px 40px;
    background: white;
    color: black;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.cta-button i {
    margin-left: 8px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
    transition: background 0.3s ease;
}

.modal.active {
    background: rgba(0, 0, 0, 0.9);
    pointer-events: all;
}

.modal-content {
    background: #0e0f13;
    width: 500px;
    height: 100%;
    padding: 60px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.modal.active .modal-content {
    transform: translateX(0);
}

.modal-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1b20 0%, #2a2b35 100%);
    border: 4px solid white;
    margin-bottom: 20px;
}

.modal-name {
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin-bottom: 30px;
}

.modal-stacks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.stack-tag {
    padding: 8px 16px;
    background: #1a1b20;
    border: 1px solid white;
    border-radius: 20px;
    color: white;
    font-size: 14px;
}

.modal-description {
    color: #a0a0a0;
    font-size: 16px;
    line-height: 1.6;
}

/* Кастомный скроллбар */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #1a1b20;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #7c3aed;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #8b5cf6;
}

/* Для Firefox */
.modal-content {
    scrollbar-width: thin;
    scrollbar-color: #7c3aed #1a1b20;
}

@media (max-width: 768px) {
    .pricing-content.bots-pricing {
        grid-template-columns: 1fr;
    }

    .bots-pricing .pricing-card,
    .bots-pricing .pricing-card:nth-child(1),
    .bots-pricing .pricing-card:nth-child(2),
    .bots-pricing .pricing-card:nth-child(3) {
        min-height: 0;
    }

    .rainbow-arc svg {
        width: 600px;
    }
    
    .title {
        font-size: 36px;
    }
    
    .top-row {
        gap: 40px;
    }
    
    .bottom-row {
        gap: 20px;
    }
    
    .avatar {
        width: 60px;
        height: 60px;
    }
    
    .header {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    body {
        padding: 90px 10px 20px 10px;
    }
    
    .header-text {
        font-size: 28px;
        gap: 5px;
        width: 100%;
        padding: 0 12px;
        text-align: center;
    }

    .header-text > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .header-normal {
        text-align: center;
    }
    
    .header-highlight {
        width: 180px;
        padding: 2px 15px;
    }
    
    .subheader-text {
        width: 100%;
        padding: 0 12px;
        text-align: center;
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .button-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 15px;
    }
    
    .action-button {
        width: 100%;
        padding: 12px 20px;
    }
    
    .advantages-section {
        flex-direction: column;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .advantage-card.tall {
        min-height: 200px;
    }
    
    .advantage-card.short {
        min-height: 150px;
    }
    
    .advantage-icon {
        font-size: 60px;
    }
    
    .advantage-icon-img {
        width: 60px;
        height: 60px;
    }
    
    .pricing-section {
        padding: 40px 20px;
        max-width: 100%;
    }
    
    .promo-section {
        padding: 0 20px;
        margin-bottom: 60px;
    }
    
    .promo-card {
        flex-direction: column;
        padding: 40px 30px;
        gap: 25px;
        text-align: center;
    }
    
    .promo-icon {
        font-size: 60px;
    }
    
    .promo-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .promo-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .promo-button {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .pricing-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .pricing-tabs {
        width: 100%;
        max-width: 100%;
    }
    
    .pricing-tab {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .pricing-cards {
        min-height: auto;
    }
    
    .pricing-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: auto;
        position: relative;
    }
    
    .pricing-content .pricing-card:nth-child(1),
    .pricing-content .pricing-card:nth-child(2),
    .pricing-content .pricing-card:nth-child(3) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    .pricing-card h3 {
        font-size: 20px;
    }
    
    .price {
        font-size: 32px;
    }
    
    .container {
        padding: 20px 10px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }
    
    .footer-left,
    .footer-right {
        align-items: center;
    }
    
    .footer-right {
        gap: 8px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .rainbow-arc {
        height: 300px;
    }
    
    .rainbow-arc svg {
        width: 100%;
        max-width: 500px;
    }
    
    .team-members {
        max-width: 100%;
    }
    
    .top-row {
        gap: 30px;
    }
    
    .bottom-row {
        gap: 15px;
    }
    
    .modal-content {
        width: 100%;
        padding: 40px 20px;
    }
    
    .modal-avatar {
        width: 120px;
        height: 120px;
    }
    
    .modal-name {
        font-size: 28px;
    }
    
    .cta-button {
        margin: 40px auto 0;
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header-text {
        font-size: 24px;
    }
    
    .header-highlight {
        width: 150px;
        font-size: 24px;
    }
    
    .nav {
        display: none;
    }
    
    .rainbow-arc svg {
        width: 100%;
        max-width: 400px;
    }
    
    .title {
        font-size: 28px;
    }
    
    .avatar {
        width: 50px;
        height: 50px;
    }
    
    .name {
        font-size: 12px;
    }
    
    .pricing-tab {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .pricing-title {
        font-size: 24px;
    }
    
    .trust-section {
        padding: 60px 0;
    }
    
    .trust-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .trust-cards {
        padding: 0 20px;
        gap: 20px;
    }
    
    .trust-card {
        min-width: 280px;
        padding: 20px;
        gap: 12px;
    }
    
    .review-header {
        gap: 12px;
    }
    
    .trust-icon {
        font-size: 28px;
        width: 45px;
        height: 45px;
    }
    
    .trust-card h3 {
        font-size: 16px;
    }
    
    .review-stars {
        font-size: 12px;
    }
    
    .review-text {
        font-size: 13px;
    }
}

    .promo-card {
        padding: 30px 20px;
        gap: 20px;
    }
    
    .promo-icon {
        font-size: 50px;
    }
    
    .promo-title {
        font-size: 20px;
    }
    
    .promo-description {
        font-size: 13px;
    }
    
    .promo-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}
