body {
    font-family: 'Arial', sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #333;
}

p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #ffffff;
    color: #333;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

}

.logo img {
    height: 40px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero {
    padding: 60px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 800px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.hero a {
    background-color: #0062ff;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
}

.hero a:hover {
    background-color: #0003cc;
}

.services {
    padding: 60px;
    background-color: #ffffff;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.service-card {
    background-color: #f5f3f3;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    flex: 1;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 16px;
}

.service-card .service-icon {
    margin-bottom: 20px;
    color: #0062ff;
}

.container-wide {
    background-color: white;
    width: 100%;
}

.conversion-optimized h1 {
    margin-bottom: 20px;
    text-align: left;
}

.conversion-optimized p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    text-align: left;
}

.btn {
    background-color: #0062ff;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background-color: #001fcc;
}

.conversion-optimized ul {
    list-style: disc;
    padding-left: 20px;
    color: #666;
    font-size: 16px;
}

.conversion-optimized ul li {
    margin-bottom: 10px;
}

.contact {
    padding: 60px;
    background-color: #ffffff;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-form {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-us {
    padding: 120px 0;
    background-color: #ffffff;
    text-align: center;
}

.contact-us h2 {
    margin-bottom: 20px;
}

.contact-us p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.form-container {
    display: flex;
    justify-content: stretch;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    width: 100%;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 60px;
}

label {
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-form-container input,
.contact-form-container textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    font-family: Arial, sans-serif;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
    box-shadow: #0062ff 0px 0px 0px 2px;
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    width: 100%;
    padding: 20px 0;
}

footer p {
    margin: 0;
    color: white;
}

.btn {
    background-color: #0062ff;
    color: #ffffff !important;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 7px;
    border: none;
}

.btn:hover {
    background-color: #0d57cd;
}

.faq {
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
}

.faq-item {
    padding: 20px 0;
    border-bottom: #d3d2d2 1px solid;
}

.faq-question {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    color: #666;
    font-size: 16px;
    display: none;
    margin-top: 10px;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    display: block;
}

@media (min-width: 1025px) {
    .service-cards {
        display: grid;
        grid-template-columns: repeat(3, minmax(250px, 1fr));
        justify-content: space-between;
        gap: 20px;
    }

    .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.why-us {
    padding: 60px 20px;
    display: grid;
    place-items: center;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
    max-width: 1200px;
}

.why-us h2 {
    margin-bottom: 20px;
}

.why-us p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.why-us ul {
    list-style: disc;
    padding-left: 20px;
    color: #666;
    font-size: 16px;
}

.why-us ul li {
    margin-bottom: 10px;
}

.why-us img {
    max-width: 400px;
    border: none;
    border-radius: 20px;
    object-fit: contain;
}

.nav-links a {
    text-decoration: none;
    color: #333;
}

.nav-links a:hover {
    color: #0062ff;
}
.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.conversion-optimized {
    padding-top: 160px;
    padding-bottom: 130px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
    background-color: #ffffff;
    display: grid;
    place-items: center;
    grid-template-columns: 2fr 1fr;
    margin: 0 auto;
    max-width: 1200px;
}

.conversion-image {
    max-width: 600px;
    border: none;
    border-radius: 30px;
    object-fit: contain;
}

}
@media (max-width: 1024px) {
    .service-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
    display: none;
    }
.mobile-menu {
    display: block;
    position: relative;
}
.mobile-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.mobile-link {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

.mobile-link:hover {
    color: #0062ff;
}

.mobile-menu[aria-expanded="true"] + .mobile-nav-links {
    display: flex;
}

.conversion-optimized {
    padding: 160px 20px;
    text-align: left;
    background-color: #ffffff;
    display: grid;
    place-items: center;
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 1200px;
}

.conversion-image {
    max-width: 400px;
    height: auto;
    margin-top: 20px;
}

}