.logo-container {
    background: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 5px solid #ffcc00;
}
h1 {
    color: #006633;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}
.subtitle {
    font-weight: 300;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
}

.search-container i {
    left: 15px;
    top: 12px;
    color: #6c757d;
}

.search-container input {
    padding-left: 40px;
    border-radius: 30px;
    border: 2px solid #006633;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    background-color: white;
    margin-bottom: 20px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 102, 51, 0.15);
}

.card-header {
    background: linear-gradient(to right, #006633, #004d26);
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    border-bottom: 3px solid #ffcc00;
}

.card-body {
    padding: 20px;
}

.contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e6f4ea;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #006633;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-details {
    flex-grow: 1;
}

.contact-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 3px;
}

.contact-value {
    font-weight: 500;
    color: #333;
}

.no-results {
    text-align: center;
    padding: 50px 20px;
    color: #6c757d;
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ddd;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    color: #006633;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #006633, #ffcc00);
    border-radius: 3px;
}

@media (max-width: 768px) {
    
    h1 {
        font-size: 1.8rem;
    }
}