
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.top-link {
    text-align: center;
    background-color: #006699;
    padding: 10px;
}

.top-link-text {
    color: #FFFFFF;
    font-size: 18px;
    text-decoration: none;
}

.top-link-text:hover {
    text-decoration: underline;
}

body {
    font-family: 'Helvetica', sans-serif;
    line-height: 1.6;
    background-color: #F4F4F4;
    color: #006699;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: #543B65;
    padding: 10px 0;
    position: relative;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 1.8rem;
    text-decoration: none;
    color: #F4F4F4;
}

.flex-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.flex-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.flex-item img {
    width: 100%;
    height: auto;
    max-width: 300px;
}


.hero {
    background-image: url('../Assests/img8.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #F4F4F4;
    font-weight: bold;
    text-align: center;
    padding: 175px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.btn, .text-container .btn {
    background-color: #78A6B4;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    text-align: center;
    display: inline-block;
    margin-top: 10px;
}

.btn:hover {
    background-color: #006699;
}


.footer {
    background-color: #543B65;
    color: #F4F4F4;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .footer-left {
    flex: 1;
    text-align: left;
}

.footer .footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer .footer-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer p {
    font-size: 14px;
}