/* Start custom CSS for html, class: .elementor-element-587fd4b *//* --- Custom CSS for Alison Verification Cards --- */

:root {
    /* Define Color Variables for easy theme changes */
    --primary-color: #007bff; /* Blue */
    --secondary-color: #28a745; /* Green */
    --background-color: #f4f7f6; /* Light Gray/Off-White */
    --text-color: #333;
    --card-bg: #ffffff;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
    --border-radius: 10px;
}

/* Reset and Base Styles for the specific elements */
.hero, .card-grid, .card, .btn, .search-form, .search-input {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Hero Section Styling */
.hero {
    text-align: center;
    margin: 50px auto;
    padding: 0 20px;
    max-width: 800px;
}

.hero h2 {
    color: var(--primary-color);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 10px;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #666;
}

/* Card Grid Layout (Flexbox for Desktop) */
.card-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch; 
    margin: 0 auto 60px auto;
    max-width: 1100px;
    padding: 0 20px;
}

.card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    flex: 1; 
    min-width: 300px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.card p {
    margin-bottom: 30px;
    color: #555;
}

/* --- Form and Input Styling --- */
.search-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Spacing between input and button */
    margin-bottom: 0px; /* Reduced margin since the form contains the button */
}

.search-input {
    width: 100%; /* Full width of the card padding */
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    text-align: center;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Button Styling */
.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    width: 100%; /* Make button full width of the card */
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background-color: #0056b3; 
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: white;
}

.secondary-btn:hover {
    background-color: #1e7e34;
}

/* Responsiveness (Mobile View) */
@media (max-width: 768px) {
    .card-grid {
        flex-direction: column; 
        gap: 20px;
    }
    .hero {
        margin: 30px auto 40px auto;
    }
}/* End custom CSS */