@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    font-size: 18px;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

.logo {
    max-width: 240px;
}
.logo-container{
        max-width: 880px;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
        display: flex;
        justify-content: flex-start; 
        width: 100%;
}
/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('../core/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-link {
    color: white;
    text-decoration: underline;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    margin: 20px 0;
}

/* Content Section */
.content {
    max-width: 880px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    color: #8b0000;
    text-align: center;
    margin: 20px 0 60px 0px;
    font-size: 1.5rem;
}

.tips-list {
    margin: 20px 0;
}

.tip-item {
    margin-bottom: 20px;
}

.tip-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.tip-text {
    margin-bottom: 10px;
}

/* Signup Form */
.signup-section {
    background-color: #a7d8ff;
    padding: 30px 20px;
    text-align: center;
    margin-top: 30px;
}

.signup-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.signup-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.submit-btn {
    padding: 12px;
    background-color: #e60000;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-link {
    color: #666;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .footer {
        flex-direction: column;
        gap: 10px;
    }
}