/* Black and Gold Theme */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(184, 134, 11, 0.18), transparent 34%),
        linear-gradient(180deg, #080808 0%, #111 45%, #050505 100%);
    color: #f3d58a;
    line-height: 1.6;
}

/* Header and Navigation */
header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(10, 10, 10, 0.92));
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.65);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
/* Header for other pages*/
header h1 {
    margin: 0;
    color: #f5d68a;
    font-size: 2.5rem;  /* changes text size */
}
/* Header for other pages*/
header h2 {
    text-align: center;
    color: #f5d68a;       /* text color */
    margin: 0;         /* Removes extra spacing that might cause misalignment */
    padding: 20px 0;   /* Adds even space on top and bottom */
    width: 100%;
    font-size: 2.5rem;
}

nav ul {
    background: transparent; /* Remove the extra background */
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #f3d58a;
    padding: 15px 20px;
    display: inline-block;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: rgba(184, 134, 11, 0.22); /* Gold on hover */
}

/* Main Content Area */
main {
    padding: 28px 20px 40px;
    max-width: 1200px;
    margin: 20px auto;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.97), rgba(0, 0, 0, 0.96));
    color: #f3d58a;
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
}

h2 {
    color: #f3d58a;
    text-align: center;
    padding-bottom: 10px;
}

p {
    color: white;
}

/* Buttons and Calls to Action */
.cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #e1bf72, #b8860b);
    color: black;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background: linear-gradient(180deg, #f0d893, #c99816);
    color: white;
}

/* Footer */
footer {
    margin-top: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: linear-gradient(180deg, #050505, #0e0e0e);
    color: #f3d58a;
    padding: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.65);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1.5rem;
}

.footer-section {
    flex: 1 1 calc(25% - 1rem);
    min-width: 200px;
}

.footer-section h3, .footer-section h4 {
    color: #d8b15d; /* Gold Accent */
    margin-bottom: 1rem;
}

.footer-section p, .footer-section ul {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #d8b15d; /* Gold Accent */
}

footer p {
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Form(claim page) Styling */
.intake-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(180deg, #faf8f1, #ffffff);
    border-radius: 12px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.intake-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.intake-form input,
.intake-form textarea,
.intake-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.intake-form input:focus,
.intake-form textarea:focus {
    border-color: #0A2342; /* Dark Blue */
    outline: none;
}

.intake-form button {
    background-color: #B8860B; /* Gold */
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.intake-form button:hover {
    background-color: #0A2342; /* Dark Blue */
}
section ul {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}

section {
    margin: 24px auto;
    padding: 22px 24px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(9, 9, 9, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.hero-feature {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: center;
    padding: 28px;
    overflow: hidden;
}

.hero-copy {
    text-align: left;
}

.hero-copy h2 {
    text-align: left;
    margin-top: 0;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual img {
    width: 100%;
    max-width: 540px;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.48);
}

.hero-feature p,
.hero-feature h2,
.hero-feature ul {
    text-align: left;
}

.hero-feature .hero-copy p {
    max-width: 38rem;
}

.hero-feature .hero-copy h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.hero-feature .hero-copy p {
    font-size: 1.05rem;
}

/* Certificate Section */
.certificate {
    background-color: #090909;
    color: #f3d58a;
    padding: 20px;
    text-align: center;
}

.certificate h2 {
    color: #f3d58a;
}

.certificate p {
    color: white;
}

.certificate img {
    max-width: 80%;
    height: 700px;
    border: 5px solid #d8b15d;
    margin-top: 20px;
}

.thank-you-page {
    min-height: 100vh;
    text-align: center;
    background: linear-gradient(180deg, #080808 0%, #0f0f0f 50%, #050505 100%);
    color: #f3d58a;
}

.thank-you-page header,
.thank-you-page footer {
    background: transparent;
    color: #f3d58a;
    border-color: transparent;
    box-shadow: none;
}

.thank-you-page main {
    background: transparent;
    color: #f3d58a;
}

.thank-you-card {
    background: linear-gradient(180deg, rgba(18,18,18,0.9), rgba(8,8,8,0.94));
    color: #f3d58a;
    max-width: 760px;
    margin: 40px auto;
    padding: 36px 28px;
    border-radius: 18px;
    border: 1px solid rgba(212,175,55,0.12);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.thank-you-card h1,
.thank-you-card p {
    color: #f3d58a;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    nav ul {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .process ol {
        padding-left: 1rem;
    }

    .process ol li {
        font-size: 1rem;
    }
}