/* Reset some default styles for better consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #5a5a5a;
    padding-top: 50px;
}

h1 {
    color: #ffa534;/* Text color */
    font-size: 48px; /* Font size */
    text-align: center; /* Text alignment */
    font-weight: bold;
    letter-spacing: 2px;
}

h2 {
    color: #1d9c12; /* Text color */
    font-size: 36px; /* Font size */
}

h3{
    color: #1d9c12; /* Text color */
    font-size: 24px; /* Font size */
    text-align: center; /* Text alignment */
}

p {
    color: #5a5a5a; /* Text color */
    font-size: 18px; /* Font size */
    line-height: 2; /* Line spacing */
}


/*header {
    background-color: #1d9c12;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #1d9c12;
    color: #fff;
    z-index: 2; /* Ensure the header is above the stars */
}


.logo {
    font-size: 24px;
    font-weight: bold;
    margin-left: 20px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    
}

nav a:hover {
    color: rgb(17, 99, 9);
}

section {
    padding: 50px;
}


#home{
    /*background-color: #1d9c123e;*/
    padding: 20px;
}

.hero {
    background-image: url('img/g3h4.webp');
    background-size: 70% auto;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px; /* Adjust the height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

#about{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.text{
    padding: 20px;
    text-align: left; /* You can customize the text alignment */
}

.image{
    width: 400px;
    height: auto;
    text-align: right;
}

.services{
    text-align: center;
}


footer {
    background-color: #5a5a5a;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}


.line-divider {
    width: 75%; 
    border-top: 1px solid #1d9c12; 
    margin: 0 auto; 
}


.highlighted-text {
    font-weight: bold;
    color: #1d9c12; /* You can customize the color */
    font-size: 18px; /* You can customize the font size */
    text-align: center; /* You can customize the text alignment */
    padding: 20px; /* You can customize the margin */
}



.horizontal-section {
    display: flex;
    width: auto;
}

.part {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.part h2 {
    font-size: 28px;
}

.part p {
    margin-top: 10px;
    color: #5a5a5a; /* Text color */
    font-size: 18px; /* Font size */
    line-height: 1.5; /* Line spacing */
}

.part img {
    width: 400px;
    height: auto;
    align-items: center;
}


.stars-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background-color: #f0f0f0;
}

.star {
    font-size: 28px;
    color: #ccc;
    margin: 0 5px;
    transition: color 0.3s ease;
}