/* Reviews Section */
.reviews-section {
    padding: 50px;
    background-color: #fff;
    color: #072a3e;
    text-align: center;
}

.reviews-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #072a3e;
    position: relative;
}

.reviews-section h2:after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #ddb987;
    display: block;
    margin: 10px auto;
}

.availability-notice {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #4CAF50; /* Green color for visibility */
    font-weight: bold;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.review-card {
    background-color: #072a3e;
    color: #ddb987;
    padding: 20px;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.review-rating {
    margin-bottom: 10px;
}

.star {
    font-size: 20px; /* Adjust star size */
    color: #f5c518; /* Star color */
}

.star.filled {
    color: #f5c518; /* Filled star color */
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
}

.review-author {
    font-size: 1.2rem;
    margin-top: 10px;
    font-weight: bold;
}

/* API Section */
.api-section {
    padding: 50px;
    background-color: #f9f9f9;
    color: #072a3e;
    text-align: center;
}

.api-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #072a3e;
}

.api-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.api-url-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.api-url-input {
    width: 400px; /* Adjust width as needed */
    padding: 10px;
    font-size: 1rem;
    border: 2px solid #072a3e;
    border-radius: 5px;
    outline: none;
}

.copy-button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #072a3e;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.copy-button:hover {
    background-color: #ddb987; /* Change color on hover */
}
