/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
}

/* Header Section */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    background-color: #fff;
    border-bottom: 2px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    width: 60px; /* Adjust logo size */
    height: auto;
}

.headline-container {
    text-align: center;
    flex-grow: 1;
}

.headline {
    font-size: 28px;
    font-weight: bold;
    color: #150e58;
    margin: 0;
}

.tag {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.line {
    height: 2px;
    width: 70px; /* Adjust line length */
    background-color: #000000;
}

.circle {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    border: 2px solid #000000;
    border-radius: 50%;
    padding: 8px 18px;
    margin: 0 8px;
}

/* Hero Section */
.hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Section */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 50px 20px;
    background-color: #fff;
}

.service-item {
    text-align: center;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.service-item img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 20px;
    font-weight: bold;
    color: #150e58;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
    color: #333;
    margin: 0;
}
/* Contact Section */
.contact {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
    border-top: 2px solid #150e58; /* Add the top line divider */
}

.contact h2 {
    font-size: 24px;
    font-weight: bold;
    color: #150e58;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone {
    font-size: 18px;
    color: #150e58;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone .icon {
    font-size: 20px;
}

.phone a {
    text-decoration: none;
    color: #150e58;
    font-weight: bold;
}

.social-media {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.social-link {
    font-size: 16px;
    color: #150e58;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-link img {
    width: 24px;
    height: 24px;
}

/* Optional: Add hover effects */
.phone a:hover,
.social-link:hover {
    color: #333;
    text-decoration: underline;
}
