@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", Arial, Helvetica, sans-serif !important;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f7fb;
    color: #1e2a44;
}

.primary-section {
    padding: 40px 0;
    background-color: #dfe9f5;
}

.site-logo {
    max-width: 100px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #121926;
    margin-bottom: 30px;
}

.card-container {
    background: linear-gradient(145deg, #ffffff, #f5f7fa);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    transition: transform 0.4s, box-shadow 0.4s;
}

.card-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.rank-badge {
    background-color: #9d4edd;
    color: white;
    padding: 6px 12px;
    border-radius: 25px;
    font-weight: bold;
    position: absolute;
    top: -18px;
    left: 25px;
}

.rating-score {
    background-color: #00a896;
    color: #fff;
    padding: 7px 14px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
}

.features-list ul li {
    list-style: none;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    color: #2d3748;
    font-weight: 500;
}

.offer-box {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 6px 15px rgba(102, 16, 242, 0.3);
    position: relative;
    overflow: hidden;
    border: 3px solid #3F51B5;
}

.offer-text {
    color: #d63031;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
    font-weight: 600;
}

.offer-subtext {
    color: #0984e3;
    font-weight: 500;
}

.action-btn a {
 background: linear-gradient(45deg, #6610f2, #9d4edd);
 border: none;
 border-radius: 30px;
 color: #fff;
 text-transform: uppercase;
 font-size: 1.2rem;
 position: relative;
 overflow: hidden;
 transition: transform 0.4s, box-shadow 0.4s;
 box-shadow: 0 6px 20px rgba(102, 16, 242, 0.4);
}

.action-btn a:hover {
    background: linear-gradient(45deg, #520ecd, #7d3cc2);
    box-shadow: 0 8px 25px rgba(102, 16, 242, 0.6);
    transform: scale(1.05);
}

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

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

.faq-block {
    margin-top: 60px;
}

.faq-block h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #121926;
}

.info-block {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.site-footer {
    background-color: #121926;
    color: #edf2f7;
    padding: 60px 0;
}

.site-footer a {
    color: #a0b1cb;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
    background-color: #2d3748;
    border-radius: 15px;
    padding: 15px 0;
}

.partners-logos img {
    max-height: 60px;
}

.cookie-notice {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1e2a44;
    color: #edf2f7;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    max-width: 90%;
    text-align: center;
    width: max-content;
}

.cookie-notice button {
    margin: 10px 8px;
}

.cookie-notice .btn-primary {
 background: linear-gradient(45deg, #6610f2, #9d4edd);
 border: none;
}

.cookie-notice .btn-secondary {
    background: #4a5568;
    border: none;
    color: #edf2f7;
}

.card-img {
    transition: transform 0.4s ease-in-out;
}

.card-img:hover {
    transform: rotate(3deg) scale(1.1);
}

.card-container h6 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e2a44;
}

@media only screen and (max-width: 768px) {
    .features-list ul li {
        justify-content: center;
    }

    .rating-score {
        display: flex;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }

    .card-container h6 {
        text-align: center;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .site-logo {
        max-width: 180px;
    }
}