body {
    font-family: "Times New Roman", Times, serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #eef2f3;
    color: #333;
}

header {
    background: linear-gradient(90deg, #005f73, #0a9396);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.8em;
	font-family: "Times New Roman", Times, serif;
    font-weight: bold;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    background: #0a9396;
    flex-wrap: wrap;
}

nav ul li {
   margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 12px 18px;
    display: block;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover {
    background: #94d2bd;
    border-radius: 5px;
}
/* Home Section */
#home {
    text-align: center;
    background-color: #f5dfd0;
    padding: 50px 20px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh; /* Adjust height to fill screen */
}

.home-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.developer-image {
    width: 300px; /* Size of the round image */
    height: 300px; /* Ensure height and width are equal for round effect */
    border-radius: 50%; /* Makes the image round */
   
    border: 2px solid black; /* Adds a border around the image */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Adds a soft shadow effect */
    margin-bottom: 20px; /* Adds space below the image */
}

.intro-text h1 {
    font-size: 3em;
	font-family: "Times New Roman", Times, serif;
}

.intro-text p {
    font-size: 1.5em;
	font-family: "Times New Roman", Times, serif;
}
.home-container button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
}

.home-container button:hover {
    background-color: #27ae60;
}


section {
    padding: 40px 20px;
    text-align: center;
    max-width: 800px;
    margin: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* Contact Section */
#contact {
    padding: 40px 20px;
    background-color: #34495e;
    color: white;
    text-align: center;
}

#contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

form label {
    font-size: 1.2em;
    margin-top: 10px;
    display: block;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
}

form button:hover {
    background-color: #27ae60;
}
footer {
  text-align: center;
  padding: 20px;
  background-color: #222;
  color: #fff;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* Terms, Privacy & Services Sections */
.terms, .privacy, .services {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: auto;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 30px;
}

.terms h2, .privacy h2, .services h2 {
    color: #005f73;
    margin-bottom: 15px;
    text-align: center;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin: 10px 0;
    }
    section, .terms, .privacy, .services {
        width: 95%;
    }
}

@media (max-width: 480px) {
    header {
        font-size: 1.5em;
    }
    button {
        width: 100%;
    }
}
