/* General styles for the section */
.unique-section {
    
    text-align: center;
    padding: 3.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
    margin: 2rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

/* Add decorative elements */
.unique-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
}

/* Header styling */
.unique-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.unique-section .highlight {
    color: #ff9f43;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-style: italic;
    font-weight: 600;
}

/* Button styling */
.find-doctor-btn {
    background: linear-gradient(45deg, #4c6ef5, #6e8ffa);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 2rem 0;
    box-shadow: 0 10px 20px rgba(76, 110, 245, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.find-doctor-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(76, 110, 245, 0.4);
}

.find-doctor-btn:active {
    transform: translateY(1px);
}

/* Features list styling */
.features-list {
    list-style: none;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.features-list li {
    font-size: 1.1rem;
    margin: 1rem 0;
    color: #2d3436;
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.features-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.features-list .checkmark {
    color: #00b894;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
    background: #e8fff5;
    padding: 0.5rem;
    border-radius: 50%;
}

.features-list strong {
    color: #2d3436;
    font-weight: 600;
}

.features-list span {
    color: #636e72;
    font-size: 0.95rem;
    margin-top: 0.3rem;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .unique-section {
        padding: 2rem 1rem;
    }

    .unique-section h2 {
        font-size: 2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}
