body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero {
    text-align: center;
    padding: 50px 0;
    background-color: #f0f0f0;
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero button {
    font-size: 16px;
}

cite {
    font-size: 12px;
}

.features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 50px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 300ms ease-in-out;
    color: #333;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #eef4f8;
    border-radius: 10px;
}

.feature:hover mark {
    background-color: #ebb28352;
}

button {
    transition: all 350ms !important;
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
    color: #666;
    transition: color 300ms ease;
}

.feature p {
    font-size: 16px;
    line-height: 1.6;
}

.feature mark {
    border-radius: 3px;
    color: 333;
    background-color: #e8f5fe;
    transition: all 250ms;
}

.feature mark:hover {
    border-radius: 3px;
    color: white;
    cursor: default;
    background-color: #007BFF;
}

.feature:hover h3 {
    color: #000;
}

.prices {
    background-color: #f8f9fa;
    padding: 50px 0;
    text-align: center;
}

.price-card {
    display: inline-block;
    width: 250px;
    background-color: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: all 250ms;
}

.prices .container .price-card {
    -webkit-font-smoothing: antialiased;
    transform: translate3d(0, 0, 0) scale(0.98);
    transform-origin: center;
    line-height: 1.4;
}


.prices .container .price-card:hover {
    -webkit-font-smoothing: antialiased;
    transform: translate3d(0, 0, 0) scale(1.095);
    transform-origin: center;
    line-height: 1.4;
}

.price-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.price-card p {
    font-size: 18px;
    margin: 5px 0;
}

.price-card .positive {
    color: rgb(41, 170, 41);
    font-weight: bold;
}

.price-card .negative {
    color: crimson;
    font-weight: bold;
}

.signup {
    text-align: center;
    padding: 50px 0;
    background-color: #f0f0f0;
}

.signup h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.signup p {
    font-size: 18px;
    margin-bottom: 20px;
}

.signup form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.signup input {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.signup button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.coinLogo {
    width: 50px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
}

.signup button:hover {
    background-color: #0056b3;
}

.features .container .row .feature {
    margin: 30px;
}

.features .container .row .feature p {
    margin-bottom: -10px;
}

.about-sec {
    background-color: #f8f9fa;
    padding: 80px 0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.273);
    transition: all 250ms;
}

.about-sec:hover {
    background-color: #EEF4F8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.273);
}

.about-sec h2 {
    font-size: 36px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-sec p {
    font-size: 18px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


.about-sec .container {
    max-width: 1100px;
}

@media (max-width: 767px) {
    .about-sec h2 {
        font-size: 30px;
    }

    .about-sec p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .about-sec button {
        padding: 12px 30px;
        font-size: 16px;
    }
}