.elementor-7989 .elementor-element.elementor-element-8b73767{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8c8f7ae *//* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f3f4f6;
    color: #333;
    line-height: 1.6;
    padding: 2rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 3rem;
}

header h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

header p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Grid Layout */
.card-grid {
    display: grid;
    /* This creates a responsive layout that automatically wraps cards */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Card Styles */
.card {
    text-decoration: none;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Card Hover Effects */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.card h2 {
    font-size: 1.25rem;
    color: #2563eb;
    margin-bottom: 0.75rem;
    word-break: break-word;
    transition: color 0.3s ease;
}

.card:hover h2 {
    color: #1d4ed8;
}

.card .url {
    font-size: 0.875rem;
    color: #9ca3af;
    word-break: break-all;
}/* End custom CSS */