/* General Styles */
body {
    margin: 0;
    /* padding: 0; */
    font-family: Arial, sans-serif;
    /* box-sizing: border-box;  */

}


/* Top Header */
.top-header {
    background: #333;
    color: #fff;
    padding: 10px 0px;
    font-size: 14px;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Top Header */
.top-bar {
    display: flex;
    justify-content: space-between;
    background-color: #333;
    color: #fff;
    /* padding: 10px; */
}

.top-bar .envato-market {
    font-size: 18px;
}

.top-bar .envato-market .green {
    color: #8dc63f;
}

.top-bar .buy-now button {
    background-color: #8dc63f;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
}

.main-nav .logo {
    font-size: 24px;
    font-weight: bold;
}

.main-nav .logo .icon {
    color: orange;
}

.main-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
}

.main-nav ul li {
    margin: 0 10px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
}

.main-nav .appointment {
    background-color: orange;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}
/* About Us Section */
.about-us {
    background: #f9f9f9;
    padding: 50px 0;
}

.about-us .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-us h1 {
    flex: 1 100%;
    font-size: 36px;
    margin-bottom: 20px;
}

.about-us p {
    flex: 1 100%;
    font-size: 16px;
    line-height: 1.6;
}

.about-us .experience {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.about-us .experience div {
    text-align: center;
    flex: 1;
}

.about-us .experience h3 {
    font-size: 36px;
    margin-bottom: 10px;
}

.about-us .image {
    margin-top: 20px;
}

.about-us .image img {
    width: 100%;
    height: auto;
}

/* Our Team Section */
.our-team {
    background: #fff;
    padding: 50px 0;
}

.our-team .container {
    text-align: center;
}

.our-team h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.our-team p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.our-team .team-members {
    display: flex;
    justify-content: space-between;
}

.our-team .team-member {
    text-align: center;
    flex: 1;
    margin: 0 10px;
}

.our-team .team-member img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

.our-team .team-member h3 {
    font-size: 24px;
    margin-top: 10px;
}

.our-team .team-member p {
    font-size: 16px;
    color: #666;
}

/* Certificates Section */
.certificates {
    background: #f9f9f9;
    padding: 50px 0;
}

.certificates .container {
    text-align: center;
}

.certificates h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.certificates .certificates-list {
    display: flex;
    justify-content: space-between;
}

.certificates .certificate {
    text-align: center;
    flex: 1;
    margin: 0 10px;
}

.certificates .certificate img {
    width: 100px;
    height: 100px;
}

.certificates .certificate p {
    font-size: 16px;
    margin-top: 10px;
}

/* Our Advantages Section */
.our-advantages {
    background: #fff;
    padding: 50px 0;
}

.our-advantages .container {
    text-align: center;
}

.our-advantages h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.our-advantages .advantages-list {
    display: flex;
    justify-content: space-between;
}

.our-advantages .advantage {
    text-align: center;
    flex: 1;
    margin: 0 10px;
}

.our-advantages .advantage img {
    width: 100px;
    height: 100px;
}

.our-advantages .advantage h3 {
    font-size: 24px;
    margin-top: 10px;
}

.our-advantages .advantage p {
    font-size: 16px;
    margin-top: 10px;
}

/* Footer Section */
.newsletter {
    background: orange;
    padding: 20px 0;
}

.newsletter .container {
    text-align: center;
}

.newsletter h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.newsletter form {
    display: flex;
    justify-content: center;
}

.newsletter input {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    width: 300px;
}

.newsletter button {
    padding: 10px;
    border: none;
    background: #333;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

footer .main-footer {
    padding: 50px 0;
    background: #333;
    color: #fff;
}

footer .main-footer .container {
    display: flex;
    justify-content: space-between;
}

footer .footer-info {
    flex: 1;
}

footer .footer-info h2 {
    margin-bottom: 20px;
}

footer .footer-info ul {
    list-style: none;
    padding: 0;
}

footer .footer-info ul li {
    margin-bottom: 10px;
}

footer .footer-info ul li a {
    text-decoration: none;
    color: #fff;
}

footer .map {
    flex: 2;
    margin-left: 50px;
}

footer .map #map {
    height: 200px;
    background: #ccc;
}

footer .social-media {
    text-align: center;
    padding: 20px 0;
}

footer .social-media a {
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
    color: white
}

footer .social-media img {
    height: 20px;
}

footer .copyright {
    background: #222;
    padding: 10px 0;
    text-align: center;
}

footer .copyright p {
    margin: 0;
    font-size: 14px;
    color: white;
}
