/* Ensure this file is in the same directory as index.html, or update the path in the <link> tag */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100%;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #fff;
    color: #333;
    padding: 8px;
    z-index: 1000;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid #1e6bd6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #E0E0E0;
}

/* Row and Column for Two-Column Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.column {
    flex: 1;
    min-width: 0;
    padding: 15px;
    width: 50%;
}

/* Vertically center the payment buttons in their column */
.payment-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

/* Vertically center the "Contact Us" heading in its column */
.contact-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

/* Header Styles */
header {
    background: #D3D3D3;
    color: #333;
    padding: 1rem 0 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    border: none;
}

.logo-img {
    height: 80px;
    width: auto;
}

/* Hero Section */
.papaya {
    padding: 20px;
    background: white;
}
.hero {
    background: #F5F5F5;
    color: #000;
    text-align: center;
    padding: 80px 0;
    margin-top: 60px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #1e6bd6; /* Darker blue for better contrast */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    text-decoration: underline; /* Added for non-color link indicator */
}

.btn:hover {
    background: #155ab4; /* Adjusted hover color for contrast */
    text-decoration: none;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 107, 214, 0.3); /* Visible focus indicator */
}

.large-btn {
    padding: 20px 40px;
    font-size: 1.5rem;
    border-radius: 8px;
}

.large-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 107, 214, 0.3);
}

/* Section Styles */
.section {
    padding: 40px 0;
    text-align: center;
}

.section h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.section p {
    margin-bottom: 1rem;
}

/* Payment Steps List */
.payment-steps {
    text-align: center;
    margin-top: 1rem;
    padding-left: 0;
    color: #333;
    list-style: none;
}

.payment-steps li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: bold;
}

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.payment-options .btn {
    margin: 0;
    width: 100%;
    max-width: 250px;
}

/* Disclaimer Section */
.disclaimer {
    padding: 40px 0;
    text-align: center;
    color: #000;
    background: #F9F9F9;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
}

.disclaimer p {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 0.6rem;
}

/* Operating Hours */
.operating-hours {
    text-align: center;
    margin-top: 1rem;
    padding-left: 0;
    color: #000;
    list-style: none;
}

.operating-hours li {
    margin-bottom: 0.1rem;
    font-size: 1rem;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

footer .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    border: none;
}

/* Responsive Design */
@media (max-width: 1000px) {
    .container, header .container, footer .container {
        max-width: 100%;
        padding: 15px;
    }

    header .container, footer .container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
    }

    .logo-img {
        margin-bottom: 10px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section {
        padding: 30px 0;
    }

    /* Stack columns on smaller screens */
    .column {
        width: 100%;
        flex: none;
    }

    .payment-buttons {
        min-height: auto;
        padding: 15px 0;
    }

    .contact-heading {
        min-height: auto;
        padding: 15px 0;
    }

    .large-btn {
        padding: 15px 30px;
        font-size: 1.2rem;
    }

    .disclaimer {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .container, header .container, footer .container {
        padding: 10px;
    }

    header .container, footer .container {
        padding: 0 10px;
    }

    .logo-img {
        height: 64px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .large-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .disclaimer p {
        font-size: 0.85rem;
    }
}