/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Classic generic font stack */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 20px;
}

.section-title {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 12px 0;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Header */
.site-header {
    border-bottom: 1px solid #e8e8e8;
    padding: 25px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #000000;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.site-nav a {
    text-decoration: none;
    color: #555555;
    font-size: 15px;
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: #000000;
}

/* Hero Section (The "Debut Theme" look) */
.hero {
    background-color: #f4f4f4; /* Generic gray background instead of image */
    padding: 120px 20px;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #222222;
}

.hero p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    background-color: #111111;
    color: #ffffff;
    padding: 14px 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
    opacity: 0.8;
}

/* About Us Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555555;
}

/* Trust Badges */
.trust-badges {
    background-color: #fafafa;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.badges-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.badge-item {
    text-align: center;
    max-width: 150px;
}

.badge-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.badge-item p {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333333;
}

/* Footer */
.site-footer {
    padding: 60px 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #000000;
    text-decoration: underline;
}

.footer-copyright {
    color: #999999;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 767px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero {
        padding: 80px 20px;
    }

    .hero h2 {
        font-size: 28px;
    }
    
    .site-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .badges-grid {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }
}
