body {
    font-family: Arial, sans-serif;
    background-color: #fff;
}

.site-title {
    font-size: 2rem;
    color: #202124;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.site-description {
    font-size: 0.9rem;
    color: #5f6368;
}

.search-container {
    max-width: 100%;
}

.site-card {
    text-decoration: none;
    color: inherit;
}

.site-card:hover {
    text-decoration: none;
    color: inherit;
}

.card {
    transition: transform 0.2s;
    border: 1px solid #e0e0e0;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card img {
    width: 16px;
    height: 16px;
    margin-bottom: 0.5rem;
    display: block;
}

.plus-icon {
    width: 16px;
    height: 16px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4285f4;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
}

.add-site {
    cursor: pointer;
}

.add-site:hover .plus-icon {
    background-color: #1a73e8;
}

.add-site .card-body {
    padding: 1rem;
}

.card-text {
    font-size: 0.9rem;
    margin: 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #f8f9fa;
    text-decoration: underline;
}

#searchInput {
    padding: 0.75rem;
    border-radius: 24px;
    border: 1px solid #dfe1e5;
    box-shadow: none;
}

#searchInput:focus {
    box-shadow: 0 1px 6px rgba(32,33,36,.28);
    border-color: rgba(223,225,229,0);
}

.category-section {
    margin-bottom: 2rem;
}

.category-section h3 {
    margin-bottom: 1.5rem;
    color: #202124;
}

.recent-title {
    font-size: 1.2rem;
    color: #202124;
    margin-top: 0.5rem;
}

#testimonials {
    border-bottom: 1px solid #e0e0e0;
}