/* General Styles */
body {
    font-family: "Noto Serif", serif;
    font-style: normal;
    background: #f0f0f0;  /* Slightly lighter background for a softer look */
    color: #333;  /* Darker text color for readability */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

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

/* Header */
header {
    background-color: #ffffff;  /* White background to highlight the black logo */
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.logo img {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);  /* Slight zoom effect on hover */
}

.logo h1 {
    font-size: 2.5rem;
    color: #333;  /* Dark gray text to match the overall color scheme */
    letter-spacing: 2px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.logo h1:hover {
    color: #000;  /* Black color on hover for emphasis */
}

/* Intro Section */
.intro {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffffff, #f4f4f4);  /* Gradient background for a more dynamic look */
    border-bottom: 2px solid #e0e0e0;  /* Subtle border for separation */
    box-shadow: inset 0 -3px 10px rgba(0, 0, 0, 0.05);
}

.intro h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #000000;  /* Black text for strong contrast */
    font-weight: bold;
}

.intro p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;  /* Dark gray for a softer text color */
    padding: 0 20px;
}

/* Services Section */
.services {
    background-color: #ffffff;  /* White background to keep focus on content */
    padding: 60px 0;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
}

.services h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #000000;  /* Black heading */
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.services ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.services li {
    background-color: #ffffff;  /* White background for services */
    padding: 20px 30px;
    margin: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    font-size: 1.2rem;
    color: #333;  /* Dark gray text */
    border: 1px solid #e0e0e0;  /* Border to define the service box */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.services li:hover {
    transform: translateY(-10px);  /* Lift effect on hover */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.poster {
    text-align: center;
    margin-top: 20px;
}

.poster img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 40px 20px;
    background-color: #f4f4f4;  /* Slight contrast to other sections */
    border-top: 2px solid #e0e0e0;  /* Subtle border for separation */
    box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.05);
}

.contact h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000000;  /* Black heading */
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-item {
    font-size: 1.2rem;
    color: #000000;  /* Black link color */
    text-decoration: none;
    padding: 10px 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
}

.contact-item:hover {
    background-color: #e0e0e0;  /* Light gray hover effect */
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.4rem;  /* Slightly larger icons for better visibility */
    color: #333;  /* Matching icon color to text color */
}


/* Footer */
footer {
    background-color: #ffffff;  /* White background */
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    border-top: 2px solid #e0e0e0;  /* Subtle border for separation */
    margin-top: 30px;
}

footer p {
    margin: 0;
    font-size: 1rem;
    color: #333;  /* Dark gray text */
}

footer p a {
    color: #000000;  /* Black link color */
    text-decoration: none;
    font-weight: bold;
}

footer p a:hover {
    color: #555;  /* Dark gray hover effect */
}
