/* style/index-quick-access.css */

/* General styles for the page content */
.page-index-quick-access {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark gray for general text on light backgrounds */
    background-color: #f8f8f8; /* Light background */
}

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

.page-index-quick-access-section {
    padding: 60px 0;
    text-align: center;
}

.page-index-quick-access-section:nth-child(even) {
    background-color: #f1f1f1; /* Slightly different background for alternating sections */
}

.page-index-quick-access h1,
.page-index-quick-access h2 {
    color: #003366; /* Primary color for main headings */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-quick-access h3 {
    color: #003366; /* Primary color for sub-headings */
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-index-quick-access p {
    margin-bottom: 15px;
    color: #444444; /* Slightly darker gray for paragraphs */
}

.page-index-quick-access-text-center {
    text-align: center;
}

/* Buttons */
.page-index-quick-access-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-index-quick-access-btn-primary {
    background-color: #FFCC00; /* Secondary color for primary action */
    color: #003366; /* Primary color for text on secondary background */
}

.page-index-quick-access-btn-primary:hover {
    background-color: #e6b800; /* Darker yellow on hover */
    transform: translateY(-2px);
}

.page-index-quick-access-btn-secondary {
    background-color: #003366; /* Primary color for secondary action */
    color: #FFCC00; /* Secondary color for text on primary background */
    border: 1px solid #003366;
}

.page-index-quick-access-btn-secondary:hover {
    background-color: #002244; /* Darker blue on hover */
    transform: translateY(-2px);
}

.page-index-quick-access-btn-tertiary {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
}

.page-index-quick-access-btn-tertiary:hover {
    background-color: #003366;
    color: #FFCC00;
    transform: translateY(-2px);
}

.page-index-quick-access-btn-small {
    padding: 8px 18px;
    font-size: 0.9em;
    margin-top: 15px;
    background-color: #FFCC00;
    color: #003366;
}

.page-index-quick-access-btn-small:hover {
    background-color: #e6b800;
}

.page-index-quick-access-btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
    margin-top: 30px;
}

/* Hero Section */
.page-index-quick-access-hero {
    background: linear-gradient(135deg, #003366 0%, #002244 100%); /* Gradient background with primary color */
    padding: 80px 0;
    color: #ffffff; /* White text for contrast */
    text-align: left;
}

.page-index-quick-access-hero h1 {
    color: #FFCC00; /* Secondary color for hero heading */
    font-size: 3em;
    margin-bottom: 20px;
}

.page-index-quick-access-hero p {
    color: #eeeeee;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-index-quick-access-hero .page-index-quick-access-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-index-quick-access-hero-content {
    flex: 1;
}

.page-index-quick-access-hero-image {
    flex: 1;
    text-align: right;
}

.page-index-quick-access-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-index-quick-access-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

/* Features Section (About) */
.page-index-quick-access-about {
    background-color: #ffffff;
}