/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f9;
}

/* Link Styles */
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

/* Header Styling */
header {
    background-color: #002855;
    color: white;
    padding: 2rem 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-content {
    text-align: center;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.slogan {
    font-size: 1.5rem;
    font-weight: 600;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 1rem;
}

nav li {
    margin: 0 1.5rem;
}

nav a {
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 0.3rem 0;
    letter-spacing: 0.05rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #fcbf49;
}

/* Hero Section */
.hero {
    background-image: url('./assets/logo.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
}

.cta-btn {
    background-color: #fcbf49;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    color: #002855;
    text-transform: uppercase;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #f9a825;
}

/* Section Styling */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #002855;
    margin-bottom: 2rem;
}

/* Policies Section */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.policy {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.policy h3 {
    font-size: 1.75rem;
    color: #002855;
    margin-bottom: 1rem;
}

.policy p {
    font-size: 1rem;
    color: #555;
}

/* Endorsements Section */
.endorsements-section {
    background-color: #e3e8f0;
}

.endorsement-list {
    list-style-type: none;
    margin-top: 2rem;
    padding: 0;
}

.endorsement-list li {
    background: white;
    margin: 1rem 0;
    padding: 1.5rem;
    border-left: 5px solid #fcbf49;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    color: #444;
}

/* Footer Styling */
footer {
    background-color: #002855;
    color: white;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}
