/* Custom styles to supplement Tailwind */
.pattern-grid {
    background-image: radial-gradient(#528883 0.5px, transparent 0.5px);
    background-size: 24px 24px;
}

.hero-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Issue Tag Styles */
.issue-tag {
    display: inline-block;
    background-color: white;
    border: 1px solid #e1eceb;
    color: #345855;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}
.issue-tag:hover {
    background-color: #528883;
    color: white;
    border-color: #528883;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(82, 136, 131, 0.2);
}

/* Search Styles */
.search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid #e1eceb;
    background-color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
    outline: none;
    border-color: #528883;
    box-shadow: 0 0 0 4px rgba(82, 136, 131, 0.1);
}

.search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9dc2be;
    pointer-events: none;
}

/* Navbar Styles */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #528883;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Approach Card Styles */
.approach-card {
    background-color: #283d3c;
border: 1px solid #3e6d69;
    color: #c5dbd8;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: default;
}

.approach-card:hover {
    background-color: #3e6d69;
    color: white;
}
/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #fdfbf7;
}

::-webkit-scrollbar-thumb {
    background: #c5dbd8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #71a39e;
}

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