/* Import modern Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    background-color: #f6faff;
    font-family: 'Poppins', sans-serif;
    color: #2d3748;
    line-height: 1.6;
    margin: 0;
}

.navbar {
    background: linear-gradient(90deg, #1e88e5, #42a5f5);
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand, .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.navbar-brand:hover, .nav-link:hover {
    color: #e3f2fd !important;
}

.navbar-phone {
    color: #e3f2fd !important;
    font-weight: 400;
    font-size: 1rem;
    margin-left: 15px;
}

.hero {
    background: linear-gradient(180deg, #e3f2fd, #bbdefb);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.hero img {
    width: 100%;
    max-width: 900px;
    max-height: 350px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a3c6d;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 20px;
}

.btn-primary {
    background-color: #28a745;
    border-color: #28a745;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section {
    padding: 60px 30px;
    background-color: #ffffff;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    text-align: left;
}

.section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a3c6d;
    margin-bottom: 20px;
    border-left: 4px solid #42a5f5;
    padding-left: 15px;
}

.section p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: 0;
    margin-right: auto;
}

.section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 15px;
}

.footer {
    background: linear-gradient(90deg, #1e88e5, #42a5f5);
    color: #ffffff;
    padding: 30px 0;
    font-size: 1rem;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.footer p {
    text-align: center; /* Center footer text */
    margin: 0; /* Remove default margins for clean centering */
}

.footer a {
    color: #e3f2fd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.modal-content {
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: none;
}

.modal-title {
    font-weight: 600;
    color: #1a3c6d;
}

.modal-body {
    padding: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }

    .hero img {
        max-height: 250px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 40px 20px;
        margin: 15px;
    }

    .section h2 {
        font-size: 1.6rem;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .navbar-phone {
        font-size: 0.9rem;
        margin-left: 10px;
    }
}

@media (max-width: 576px) {
    .navbar-brand, .nav-link {
        font-size: 1rem;
    }

    .hero img {
        max-height: 200px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .navbar-phone {
        font-size: 0.85rem;
    }
}