/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Top Section Styling */
.top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
    background-color: white;
    color: black;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: black;
   
}
.logo:hover{
    text-decoration: none;
}

.logo img {
    width: 35px;
    height: auto;
    margin-right: 0.6rem;
    position: relative;
    top: -6px;
}
/* Container for Centered Layout */
.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Heading Styles */
h1 {
    font-size: 2.2rem;
    color: #005f6b; /* Your preferred color */
    text-align: left;
    margin-bottom: 0px;
}

h2 {
    font-size: 1.8rem;
    color: #005f6b; 
    margin-top: 30px;
}

/* Paragraph Styles */
p {
    font-size: 1rem;
    margin: 10px 0;
    color: #333;
    line-height: 1.8;
}

/* Links */
a {
    color: #00b3b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Contact Details */
.contact {
    font-weight: bold;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .top-section {
        padding: 1rem 1rem; /* Smaller padding for mobile */
    }
    .logo {
        font-size: 1.4rem; /* Reduce font size for mobile */
    }

    .logo img {
        width: 28px; /* Smaller logo size for mobile */
    }
    .container {
        margin: 20px;
        padding: 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }
}

