/* Simple Page Template Styles */

/* Simplified Hero Section */
.about-hero {
    position: relative;
    background-color: #000;
    height: 40vh;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding: 0 5%;
}

.about-hero-content {
    max-width: 800px;
    z-index: 1;
    margin-top: 20px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero p {
    font-size: 1.4rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Main Content Area */
.simple-page-content {
    background-color: #fff;
    padding: 60px 10%;
}

.page-content-inner {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
}

/* Typography for content */
.page-content-inner h2 {
    font-size: 2.2rem;
    margin: 40px 0 20px;
    color: #333;
}

.page-content-inner h3 {
    font-size: 1.6rem;
    margin: 30px 0 15px;
    color: #e91e63;
}

.page-content-inner p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.page-content-inner ul,
.page-content-inner ol {
    margin: 20px 0 20px 20px;
}

.page-content-inner li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.page-content-inner a {
    color: #e91e63;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-content-inner a:hover {
    text-decoration: underline;
}

.page-content-inner blockquote {
    border-left: 4px solid #e91e63;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

/* Section Styling */
.content-section {
    margin: 60px 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.content-section:last-child {
    border-bottom: none;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* Tables */
.page-content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.page-content-inner th,
.page-content-inner td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.page-content-inner th {
    background-color: #f9f9f9;
    font-weight: bold;
}

.page-content-inner tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Responsive styles */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.2rem;
    }
    
    .simple-page-content {
        padding: 40px 5%;
    }
    
    .page-content-inner h2 {
        font-size: 1.8rem;
    }
    
    .page-content-inner h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 250px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .simple-page-content {
        padding: 30px 5%;
    }
}
