/* .card {
    background: #fff;
    border: 1px solid rgb(230, 234, 238);
    border-radius: 4px;
    margin: 20px 0;
    padding: 20px;
    width: 99%;
    max-width: 1000px;
}
.card h2 {
    margin-top: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}
.card h3 {
    margin: 20px 0 10px;
}

.card {
    background: #fff;
    border: none;
    border-radius: 15px;
    margin: 20px 0;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.card h2 {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}
.card h3 {
    color: #4a5568;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.card ol {
    padding-left: 1.2rem;
}
.card ol li {
    color: #4a5568;
    margin-bottom: 0.5rem;
}
.card img {
    transition: transform 0.3s ease;
}
.card img:hover {
    transform: scale(1.02);
}
.text-decoration-none {
    color: #be4313;
    font-weight: 500;
}
.text-decoration-none:hover {
    color: #e67e22;
}

.rate-us-card {
    background: linear-gradient(135deg,rgb(10, 25, 163) 0%, #e67e22 100%);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.rate-us-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.rate-us-text {
    flex: 1;
    padding-right: 2rem;
}

.rate-us-text h2 {
    color: white;
    border: none;
    padding: 0;
    margin-bottom: 1rem;
}

.rate-us-button {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #be4313;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.rate-us-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: #be4313;
}

.rate-us-arrow {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.rate-us-button:hover .rate-us-arrow {
    transform: translateX(4px);
}

.rate-us-decoration {
    position: relative;
    width: 120px;
    height: 120px;
}

.rate-us-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    color: rgba(255,255,255,0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .rate-us-content {
        flex-direction: column;
        text-align: center;
    }

    .rate-us-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .rate-us-decoration {
        width: 80px;
        height: 80px;
    }
} */