body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f5f5f7;
    color: #1d1d1f;
}

header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}


.hero {
    padding: 120px 20px 80px;
    background-image: url('https://andrews.international/background-image.jpg');
}

.hero a {
    color: #fff;
    text-decoration: none;
}

.hero h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.hero p {
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #0071e3;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #005bb5;
}

.services, .testimonials {
    padding: 60px 20px;
    background: #ffffff;
    margin: 40px auto;
    width: 80%;
    max-width: 1100px;
    border-radius: 20px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

.services h2, .testimonials h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    background: #ffffff;
    margin: 40px auto;
    width: 80%;
    max-width: 1100px;
    border-radius: 20px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

.feature {
    background: #f5f5f7;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.feature p {
    font-size: 18px;
    color: #333;
}

.feature-info {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    margin-top: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.feature-info h3 {
    font-size: 22px;
    color: #0071e3;
    margin-bottom: 10px;
}

.feature-info p {
    font-size: 16px;
    color: #555;
}


footer {
    background: #1d1d1f;
    color: white;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
}

footer a {
    text-decoration: none;
    color: white;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    background: #ffffff;
    margin: 40px auto;
    width: 80%;
    max-width: 1100px;
    border-radius: 20px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

.plan {
    background: #f5f5f7;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.plan h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.plan .price {
    font-size: 32px;
    font-weight: 700;
    color: #0071e3;
    margin-bottom: 20px;
}

.plan-features {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.contact-form {
    padding: 60px 20px;
    background: #ffffff;
    margin: 40px auto;
    width: 80%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

.form-container {
    text-align: left;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

label {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

input, textarea {
    width: 90%;
    padding: 12px;
    margin: 10px 0 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    background-color: #f9f9f9;
}

input:focus, textarea:focus {
    border-color: #0071e3;
    background-color: #fff;
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.mission, .team {
    padding: 60px 20px;
    background: #ffffff;
    margin: 40px auto;
    width: 80%;
    max-width: 1100px;
    border-radius: 20px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

.content-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content-container p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

ul li {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.team-members {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    max-width: 250px;
}

.team-member img {
    max-width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-member h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 16px;
    color: #777;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

nav ul li {
    margin: 0 20px;
    position: relative; /* Needed for dropdown positioning */
}

nav ul li a {
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
    display: inline-block;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 5px;
}

nav ul li a:hover {
    color: #ffffff;
    background-color: #0071e3; /* Light blue background on hover */
}

nav ul li.dropdown {
    margin-left: auto; /* Push the Client Area dropdown to the right */
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .dropbtn {
    padding: 8px 15px;
    font-size: 16px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #1d1d1f;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown:hover .dropbtn {
    background-color: #0071e3;
    color: white;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateX(-35%);
    z-index: 1;
    border-radius: 5px;
    margin-top: 3px;
    overflow: hidden; /* Hide any excess content */
    opacity: 0;
    transition: opacity 3s ease, visibility 3s 3s; /* Fade in/out with delay */
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: opacity 10s ease, visibility 3s 3s; /* Fade in/out immediately */
}

.dropdown-content a {
    color: #1d1d1f;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #0071e3;
    color: white;
}

.container {
        max-width: 900px;
        margin: 50px auto;
        background: #fff;
        padding: 20px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.pdf-viewer {
        width: 100%;
        height: 800px;
        border: 1px solid #ccc;
}
