body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 300px;
    border: 5px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    transition: transform 0.3s ease-in-out;
}

.card:hover img {
    transform: scale(1.05);
}

.card-title {
    color: #0d6efd;
    font-weight: 600;
}

.btn-primary {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
}

footer {
    border-top: 1px solid #dee2e6;
}

h1 {
    color: #2c3e50;
    font-weight: 700;
}

.lead {
    color: #6c757d;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

ul li:before {
    content: "🐟";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-image {
        max-width: 200px;
    }
    
    .card img {
        margin: 1rem 0;
    }
}

.testimonial-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.testimonial-card h3 {
    color: #0d6efd;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #495057;
    font-style: italic;
} 