/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    background-color: #121212; /* Dark theme background */
    color: #e0e0e0; /* Light text for contrast */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Main container styling */
.main-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 0;
    background-color: #121212; /* Ensure dark background */
}

.content-wrapper {
    width: 85%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center; /* Center all content by default */
}

/* Header and title styling */
header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 30px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
    margin: 0 auto 20px;
}

/* Quote section styling */
.quote-section {
    background-color: #1e1e1e;
    border-left: 4px solid #4c8bf5;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 5px 5px 0;
    text-align: left;
}

blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: #bbbbbb;
}

cite {
    display: block;
    text-align: right;
    margin-top: 12px;
    font-size: 0.9rem;
    color: #999999;
}

/* About section styling */
.about-section {
    margin: 30px 0;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
}

/* Resources section styling */
.resources-section {
    margin: 40px 0;
    text-align: left;
}

.resources-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #333333;
    padding-bottom: 10px;
    color: #4c8bf5;
}

.resources-section ul {
    list-style-type: none;
    padding-left: 10px;
}

.resources-section li {
    margin: 15px 0;
}

.resources-section a {
    color: #7baaf7;
    text-decoration: none;
    padding: 5px 0;
    display: inline-block;
    transition: color 0.3s ease;
}

.resources-section a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.resources-section i {
    margin-right: 8px;
}

/* Footer styling */
footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333333;
    text-align: center;
    font-size: 0.9rem;
    color: #777777;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .content-wrapper {
        width: 90%;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .quote-section {
        padding: 15px;
    }
    
    blockquote {
        font-size: 1rem;
    }
    
    .about-section {
        font-size: 1rem;
    }
    
    .resources-section h2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .main-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .quote-section {
        padding: 12px;
    }
    
    blockquote {
        font-size: 0.9rem;
    }
    
    cite {
        font-size: 0.8rem;
    }
    
    .resources-section h2 {
        font-size: 1.3rem;
    }
}
