body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Top Navigation Bar */
.top-nav {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Full-width nav – far-left logo on desktop */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    height: 80px;
    width: auto;
}

/* Nav Links */
nav {
    display: flex;
    align-items: center;
}

nav a {
    color: white;
    background-color: #62DBFD;
    font-weight: bold;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.1em;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.3s;
}

nav a:hover {
    background-color: #F4DC2D;
    color: white;
}

/* Address Bar */
.address-bar {
    text-align: center;
    padding: 8px 0;
    background-color: #F4DC2D;
    font-size: 1.1em;
    font-weight: bold;
    width: 100%;
}

.address-bar a {
    color: white;
    text-decoration: none;
}

.address-bar a:hover {
    text-decoration: underline;
}

/* Hero Section – Updated to use hero4.jpg */
.hero {
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('hero4.jpg') center/cover no-repeat;
    color: white;
    background-attachment: fixed;
}

.hero h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero p {
    font-size: 1.5em;
    max-width: 800px;
    margin: 20px auto;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.8);
}

/* Features Section – Blue background with white cards and yellow icons */
.features {
    padding: 80px 20px;
    background-color: #62DBFD;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 4em;
    margin-bottom: 20px;
    color: #F4DC2D; /* Yellow icons */
}

.feature-card h3 {
    font-size: 1.6em;
    color: #62DBFD;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1.1em;
    color: #666;
}

.click-to-learn {
    font-size: 0.9em;
    color: #62DBFD;
    margin-top: 20px;
    font-weight: bold;
}

/* Feature Card Link */
.feature-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-card:hover .feature-link {
    color: inherit;
}

/* Contact Page */
.contact-main {
    padding: 100px 20px 80px;
    text-align: center;
    background: #f8f9fa;
}

.form-card {
    max-width: 600px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-main form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-main label {
    text-align: left;
    font-weight: bold;
    color: #62DBFD;
}

.contact-main input, 
.contact-main textarea {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
}

.contact-main input:focus, 
.contact-main textarea:focus {
    border-color: #62DBFD;
}

.contact-main button {
    background: #62DBFD;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
}

.contact-main button:hover {
    background: #4AB8D9;
}

.success-message {
    display: none;
}

.phone-line {
    font-size: 1.3em;
    margin-top: 50px;
}

/* Tips Page */
.tips-hero {
    padding: 80px 20px;
    text-align: center;
    background: #e3f2fd;
}

.tips-content {
    padding: 60px 20px;
    background: white;
}

.tips-list {
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
    font-size: 1.2em;
    line-height: 1.8;
    padding-left: 40px;
}

.tips-list li {
    margin-bottom: 25px;
}

.tips-list strong {
    color: #62DBFD;
}

.tips-closing {
    font-size: 1.2em;
    margin-top: 50px;
    text-align: center;
}

/* Payment Page */
.payment-reader-image {
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 40px auto;
    display: block;
}

.payment-steps {
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
    font-size: 1.2em;
    line-height: 1.8;
    padding-left: 40px;
}

.payment-steps li {
    margin-bottom: 30px;
}

.payment-steps strong {
    color: #62DBFD;
}

/* Map */
iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .nav-logo {
        height: 70px;
        margin-bottom: 20px;
    }
    nav {
        flex-direction: column;
        width: 100%;
    }
    nav a {
        margin: 10px 0;
        padding: 15px;
        font-size: 1.3em;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .address-bar {
        font-size: 1em;
        padding: 12px;
    }
    .hero {
        padding: 80px 20px;
        background-attachment: scroll;
    }
    .hero h2 {
        font-size: 2.5em;
    }
    .hero p {
        font-size: 1.2em;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card {
        padding: 30px 20px;
    }
    .tips-list {
        padding-left: 20px;
    }
    .payment-reader-image {
        margin: 20px auto;
    }
    .payment-steps {
        padding-left: 20px;
    }
}
/* Privacy Page */
.privacy-main {
    padding: 100px 20px 80px;
    text-align: left;
    background: #f8f9fa;
}

.privacy-main h1 {
    font-size: 2.5em;
    color: #62DBFD;
    text-align: center;
    margin-bottom: 30px;
}

.privacy-main h2 {
    font-size: 1.8em;
    color: #62DBFD;
    margin-top: 40px;
}

.privacy-main p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.privacy-main ul, .privacy-main ol {
    max-width: 800px;
    margin: 20px auto;
    padding-left: 40px;
}

.privacy-main li {
    margin-bottom: 15px;
}













































