@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Manrope', sans-serif;
    background: url(./images/bg.png) no-repeat;
    background-size: cover;
}

html {
    scroll-behavior: smooth;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 10%;
    align-items: center;
}

.navbar-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.navbar-logo img {
    width: 40px;
    height: 40px;
}

.navbar-logo a {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.navbar-links {
    font-size: 18px;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.navbar-links a {
    color: #fff;
    text-decoration: none;
    gap: 20px;
}

.main-hero {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 100px 10% 0px;
    gap: 20px;
}

.main-hero-text {
    text-align: center;
}

.main-hero h1{
    font-size: 64px;
    font-weight: bold;
}

.main-hero p{
    font-size: 20px;
    font-weight: 200;
}

.offers-header {
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 40px 40px 0px 0px;
    margin: 0 10%;
    padding: 15px 0;
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.header-column {
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
}

.main-offers-mobile {
    display: none;
}

.offer {
    margin: 0 10%;
}

.offer-row {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 0px 20px;
    margin-bottom: 2px;
    position: relative;
}

.offer-badge {
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    padding: 8px 16px;
    border-radius: 0px 20px 20px 0px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;

    background: linear-gradient( #1c5c9b -70%, #11365D,#195189 130%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.secondary-badge-color {
    background: linear-gradient( #0D293E -70%, #051420,#0D293E 130%);
}

.offer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    justify-content: center;
}

.offer-logo img {
    object-fit: cover;
}

.offer-logo span {
    font-size: 24px;
    font-weight: 600;
}

.offer-logo-nj {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    justify-content: center;
}

.offer-logo-nj img {
    object-fit: cover;
}

.offer-logo-nj span {
    font-size: 24px;
    font-weight: 600;
}

.offer-bonus {
    color: white;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

.offer-features {
    color: white;
    text-align: center;
    line-height: 1.6;
    font-size: 18px;
}

.offer-features div {
    font-size: 14px;
    margin: 2px 0;
}

.offer-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-btn a {
    text-decoration: none;
}

.get-bonus-btn {
    color: white;
    background: linear-gradient( #000000 -100%, #357ABD,#000000 200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.get-bonus-btn:hover {
    background-color: #357ABD;
}

.offer-info-text {
    background-color: rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.7);
    padding: 15px 20px;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    margin-bottom: 20px;
    text-align: center;
}

.offer-info-text span {
    color: #4A90E2;
    margin-right: 8px;
}

.main-history {
    padding: 80px 10%;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.history-text {
    color: white;
}

.history-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.history-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
}

.history-paragraph {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.85;
}

.history-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.history-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.main-how-to-choose {
    padding: 80px 10%;
}

.how-to-choose-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.how-to-choose-content h2 {
    color: white;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    line-height: 1.2;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.choose-card {
    background: rgba(30, 40, 50, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.choose-card:hover {
    background: rgba(35, 45, 55, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.choose-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    margin-bottom: 20px;
}

.choose-card h3 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.choose-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .main-how-to-choose {
        padding: 60px 5%;
    }
    
    .how-to-choose-content h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .choose-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .choose-card h3 {
        font-size: 20px;
    }
    
    .choose-card p {
        font-size: 14px;
    }
    
    .choose-icon {
        gap: 8px;
        margin-bottom: 15px;
    }
}

.main-faq {
    padding: 80px 10%;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-content h2 {
    color: white;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(20, 25, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    color: white;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(30, 35, 40, 0.5);
}

.faq-toggle {
    color: #4A90E2;
    transition: transform 0.3s ease;
}

.faq-toggle .vertical-line {
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-toggle .vertical-line {
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(15, 20, 25, 0.6);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 25px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .main-faq {
        padding: 60px 5%;
    }
    
    .faq-content h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .faq-container {
        gap: 15px;
    }
    
    .faq-item {
        border-radius: 12px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 18px;
        line-height: 1.4;
    }
    
    .faq-question span {
        padding-right: 10px;
    }
    
    .faq-toggle {
        flex-shrink: 0;
    }
    
    .faq-item.active .faq-answer {
        padding: 18px;
        max-height: 300px;
    }
    
    .faq-answer p {
        font-size: 15px;
        line-height: 1.5;
    }
}

.main-choose {
    padding: 80px 10%;
}

.choose-content {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(20, 30, 40, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
}

.choose-content h2 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.2;
}

.choose-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: flex-start;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    color: #4A90E2;
    margin-bottom: 20px;
    opacity: 0.9;
}

.feature-item h3 {
    color: white;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}


.footer {
    background-color: rgba(15, 20, 25, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10%;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 30px;
    height: 30px;
}

.footer-logo span {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.footer-certifications {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-certifications a {
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-certifications a:hover {
    opacity: 1;
}

.footer-certifications img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.footer-links {
    text-align: center;
    padding: 20px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 10% 0 10%;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4A90E2;
}

@media (max-width: 1024px) {
    .navbar-links {
        display: none;
    }

    .navbar {
        padding: 15px 5%;
    }

    .navbar-logo img {
        width: 30px;
        height: 30px;
    }

    .main-hero {
        padding: 20px 5% 0px;
    }

    .main-hero h1 {
        font-size: 36px;
    }

    .main-hero p {
        font-size: 16px;
    }

    .main-hero-text {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .main-image {
        display: flex;
        justify-content: center;
    }

    .main-image img{
        transform: translateY(10px);
        width: 90%;
        border-radius: 50px 50px 0px 0px;
    }

    .main-offers {
        display: none;
    }

    .main-offers-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .main-history {
        padding: 20px 5%;
    }

    .history-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .history-text h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .history-text p{
        font-size: 13px;
        margin-bottom: 10px;
    }

    .history-image img {
        max-width: unset;
    }
}

@media (max-width: 768px) {
    body {
        background: url(./images/bg-mobile.png) no-repeat;
        background-size: cover;
        background-position: center;
    }

    .main-choose {
        padding: 60px 5%;
    }

    .choose-content {
        padding: 40px 20px;
        border-radius: 20px;
        margin: 0 5px;
    }

    .choose-content h2 {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .choose-features {
        gap: 35px;
    }
    
    .feature-item h3 {
        font-size: 18px;
        margin-top: 10px;
    }
    
    .feature-icon {
        margin-bottom: 0px;
    }


    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-certifications {
        gap: 15px;
    }
    
    .footer-certifications img {
        height: 25px;
    }
    
    .footer-links {
        margin: 15px 5% 0 5%;
        padding: 15px 0 0 0;
    }
    
    .footer-links a {
        display: block;
        margin: 10px 0;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .main-how-to-choose {
        padding: 20px 3%;
    }
    
    .how-to-choose-content h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .choose-card {
        padding: 20px 15px;
    }
    
    .main-faq {
        padding: 20px 3%;
    }
    
    .faq-content h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
    }
    
    .main-choose {
        padding: 40px 3%;
    }
    
    .choose-content {
        padding: 30px 15px;
        margin: 0;
    }
    
    .choose-content h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .choose-features {
        gap: 5px;
    }
    
    .feature-item h3 {
        font-size: 12px;
    }

    .feature-icon img{
        width: 20px;
    }
}

.main-offers-mobile {
    padding: 0 2%;
}

.offer-container-mb {
    border-radius: 20px;
    background-color: black;
    padding: 10px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.offer-content-mb {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.offer-content-mb-row {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
}

.offer-place span {
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.1);
    font-size: 18px;
    padding: 5px 18px;
    color: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-rating {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.rating-stars-and-votes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.rating-score{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: url(./images/rate-circle.png) no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    font-size: 18px;
    font-weight: 600;
}

.rating-votes {
    font-size: 14px;
    color: #ffffff;
}

.rating-votes span {
    color: #858585;
}

.rating-stars {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.rating-stars img {
    width: 15px;
}

.offer-info-text-mb {
    display: flex;
    flex-direction: row;
    gap: 10px;
    font-size: 8px;
    color: #c9c9c9;
    text-align: left;
    padding: 10px;
    align-items: center;
}

@media(max-width: 1024px) {
    .offer-bonus {
        font-size: 18px;
        color: #1E62A9;
        text-align: left;
    }

    .offer-features {
        font-size: 11px;
        text-align: left;
    }

    .offer-badge {
        border-radius: 20px 20px 20px 0px;
        padding: 2px 10px;
    }

    .offer-logo img{
        width: 100%;
    }

  .offer-logo-nj img{
        width: 50%;
    }

    .offer-btn {
        margin-top: 10px;
    }

    .offer-btn a{
        width: 100%;
        padding: 10px 15px;
        font-size: 14px;
        background: linear-gradient(#357ABD -100%, #17487c, #357ABD 200%);
    }
}

.policy-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: rgba(20, 30, 40, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: white;
    line-height: 1.6;
}
.policy-content h1 {
    color: #4A90E2;
    margin-bottom: 30px;
}
.policy-content h2 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 15px;
}
.policy-content h3 {
    color: #4A90E2;
    margin-top: 25px;
    margin-bottom: 10px;
}
.policy-content ul {
    margin-left: 20px;
}
.policy-content li {
    margin-bottom: 10px;
}
.policy-content p {
    margin-bottom: 15px;
}
@media (max-width: 768px) {
    .policy-content {
        margin: 20px;
        padding: 20px;
    }
}

.footer-copyright {
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    margin-top: 20px;
    padding: 10px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 20px 20px;
}