:root {
    --tosca-primary: #00a693;
    --tosca-dark: #008a7a;
    --tosca-light: #e0f2f1;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-dark: #343a40;
    --accent: #FFD700;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--gray-light);
    color: var(--gray-dark);
    margin: 0;
    overflow-x: hidden;
}

.bg-tosca {
    background-color: var(--tosca-primary) !important;
}

.text-tosca {
    color: var(--tosca-primary) !important;
}

.btn-tosca {
    background-color: var(--tosca-primary);
    color: white;
    border-radius: 8px;
    padding: 10px 20px;
    border: none;
    transition: all 0.3s ease;
}

.btn-tosca:hover {
    background-color: var(--tosca-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
}

.navbar-brand img {
    filter: drop-shadow(1px 1px 0 white) drop-shadow(-1px -1px 0 white) drop-shadow(1px -1px 0 white) drop-shadow(-1px 1px 0 white);
    transition: filter 0.3s ease;
}

.navbar-brand img:hover {
    filter: drop-shadow(2px 2px 5px rgba(255,255,255,0.8));
}

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-dark);
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--tosca-primary);
}

.hero-section {
    background: linear-gradient(135deg, var(--tosca-primary) 0%, var(--tosca-dark) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
}

.hero-section img {
    filter: drop-shadow(2px 2px 0 white) drop-shadow(-2px -2px 0 white) drop-shadow(2px -2px 0 white) drop-shadow(-2px 2px 0 white);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-15px); }
	100% { transform: translateY(0px); }
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.footer {
    background-color: var(--gray-dark);
    color: white;
    padding: 50px 0 20px;
}

.stats-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-bottom: 4px solid var(--tosca-primary);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--tosca-primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}
