/* Common Page Styles */
.page-header {
    background: linear-gradient(135deg, #0066cc 0%, #cc0033 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
}
.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.page-header p {
    font-size: 1.2rem;
}

/* Content Sections */
.content-section {
    padding: 60px 20px;
}

.content-box {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.content-box h2 {
    color: #0066cc;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 3px solid #cc0033;
    padding-bottom: 0.5rem;
}

.content-box h3 {
    color: #cc0033;
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.content-box p {
    margin: 1rem 0;
    line-height: 1.8;
}

.content-box ul {
    list-style: none;
    margin: 1rem 0;
}

.content-box ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.content-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #cc0033;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #cc0033;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #0066cc;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    .page-header p {
        font-size: 1rem;
    }
    .content-box {
        padding: 1.5rem;
    }
    .content-box h2 {
        font-size: 1.5rem;
    }
}