/* style/index.css */

/* --- General Page Styling --- */
.page-index {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-index__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index__section-title {
    font-size: 2.5em;
    color: #DC143C; /* Deep red for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-index__section-subtitle {
    font-size: 1.2em;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index__brand {
    color: #FFD700; /* Gold for brand name */
    font-weight: bold;
}

.page-index__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.page-index__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #333; /* Dark text on gold */
    border: 2px solid #FFD700;
}

.page-index__btn--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-index__btn--secondary {
    background-color: #DC143C; /* Deep red button */
    color: #fff; /* White text on red */
    border: 2px solid #DC143C;
    margin-left: 15px;
}

.page-index__btn--secondary:hover {
    background-color: #b31031; /* Darker red on hover */
    transform: translateY(-2px);
}

.page-index__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    margin-top: 15px;
    display: inline-block;
    background-color: #FFD700;
    color: #333;
    border: none;
}

.page-index__btn--small:hover {
    background-color: #e6c200;
}

.page-index__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
    background-color: #FFD700;
    color: #333;
    border: none;
    margin-top: 30px;
}

.page-index__btn--large:hover {
    background-color: #e6c200;
}

.page-index__img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-index__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    border-radius: 50%;
    background-color: #FFD700; /* Gold background for icons */
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

/* --- Hero Section --- */
.page-index__hero {
    background: linear-gradient(135deg, #FFD700 0%, #DC143C 100%); /* Gold to red gradient */
    padding: 80px 0;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-index__hero .page-index__container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-index__hero-content {
    flex: 1;
}

.page-index__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.page-index__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 600px;
    color: #eee;
}

.page-index__hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-index__hero-image {
    flex: 1;
    text-align: center;
}

.page-index__hero-image .page-index__img {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* --- About Section --- */
.page-index__about {
    padding: 60px 0;
    background-color: #fff;
}

.page-index__about .page-index__section-title {
    color: #DC143C;
}

.page-index__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-index__grid-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index__item-title {
    font-size: 1.5em;
    color: #DC143C;
    margin-bottom: 10px;
}

.page-index__item-description {
    color: #666;
    font-size: 1em;
}

/* --- Why Choose Section --- */
.page-index__why-choose {
    padding: 60px 0;
    background-color: #f0f0f0;
}

.page-index__why-choose .page-index__section-title {
    color: #DC143C;
}

.page-index__benefits-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto 40px auto;
}
}
}