/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
    background: #e6f0fa;
    color: #1f3d5a;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background: #ffffffcc;
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
}

.navbar .logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1f3d5a;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #1f3d5a;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    color: #0f2340;
}

/* Hero */
.hero {
    text-align: center;
    padding: 80px 10%;
    background: linear-gradient(to bottom right, #d0e4f7, #e6f0fa);
    color: #0f2340;
}

.hero h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.section {
    padding: 60px 10%;
    position: relative;   
    z-index: 1;           
}


.section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #0f2340;
}

/* Cards */
.info-cards {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.card h3 {
    margin-bottom: 10px;
    color: #1f3d5a;
}

/* Checklist */
.checklist {
    margin-top: 20px;
    display: grid;
    gap: 12px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

button {
    margin-top: 20px;
    padding: 12px 25px;
    border: none;
    background: #1f3d5a;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

button:hover {
    background: #0f2340;
}

/* Quotes */
.quote-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto 20px auto;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#quoteText {
    font-size: 1.2rem;
    color: #0f2340;
}

/* How-To Resources */
.resources {
    max-width: 700px;
    margin: 0 auto;
    list-style: disc;
    padding-left: 20px;
    line-height: 1.8;
}

.resources li a {
    color: #1f3d5a;
    text-decoration: none;
    font-weight: 500;
}

.resources li a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    color: #1f3d5a;
    margin-top: 40px;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    animation: fadeInEase 1.5s forwards;
}

@keyframes fadeInEase {
    to {
        opacity: 1;
    }
}
.internal-btn {
    display: inline-block;
    margin: 20px auto;
    padding: 12px 25px;
    background: #1f3d5a;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.internal-btn:hover {
    background: #0f2340;
}
