
body {
    font-family: 'Arial', sans-serif;
    background-color: #F8F9FA; 
    color: #222222; 
}

/* Navbar */
.navbar {
    background-color: #006666 !important; 
}

.navbar .nav-link {
    color: white !important;
}

.navbar .nav-link:hover {
    color: #33A6A6 !important; 
}

/* Hero Section with Background Image */
.hero-section {
    background: url('../images/wrroots.jpg') center/cover no-repeat; 
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.2rem;
}

/* Buttons */
.btn-primary {
    background-color: #006666;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #004D4D; 
}


.card {
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    background-color: white;
    border: none;
}

.card:hover {
    transform: scale(1.05);
}

.card-title {
    color: #004D4D; 
}
.card-img-top {
    height: 250px; 
    object-fit: cover; 
    width: 100%; 
    border-radius: 5px; 
}

.modal-body p {
    font-size: 1.5rem; 
    line-height: 1.8; 
    font-weight: bold; 
    text-align: center; 
}




.panel-content {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.panel-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

.panel-text {
    max-width: 600px;
}


@media (min-width: 768px) {
    .panel-content {
        flex-direction: row;
        align-items: center;
    }
}


footer {
    background-color: #222222;
    color: white;
    text-align: center;
    padding: 15px 0;
}


