/* style/support.css */
.page-support {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6;
}

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

/* Hero Section */
.page-support__hero {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Deeper blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFCC00;
}

.page-support__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-support__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFCC00; /* Accent color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #e0e0e0;
}

.page-support__cta-button {
    display: inline-block;
    background-color: #FFCC00; /* Accent color for buttons */
    color: #003366; /* Main color for button text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-support__cta-button:hover {
    background-color: #e6b800; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-support__hero-image-container {
    width: 100%;
    max-width: 900px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.page-support__intro {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.page-support__intro-title {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__intro-text {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto;
    color: #555;
}

/* Detail Pages Section */
.page-support__detail-pages {
    padding: 60px 0;
    background-color: #f4f7f6;
}

.page-support__section-title {
    font-size: 2.8em;
    color: #003366;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__section-description {
    font-size: 1.1em;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.page-support__card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-support__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-support__card-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.page-support__card:hover .page-support__card-image {
    transform: scale(1.03);
}

.page-support__card-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__card-title a {
    color: #003366;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__card-title a:hover {
    color: #FFCC00;
}

.page-support__card-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-support__card-button {
    display: inline-block;
    background-color: #003366; /* Main color for card buttons */
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-support__card-button:hover {
    background-color: #004d99; /* Slightly lighter blue on hover */
    transform: translateY(-1px);
}

/* Call to Action Section */
.page-support__cta-section {
    background: linear-gradient(90deg, #003366 0%, #004d99 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    border-top: 5px solid #FFCC00;
}

.page-support__cta-title {
    font-size: 3em;
    color: #FFCC00;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.page-support__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 2.8em;
    }

    .page-support__hero-description {
        font-size: 1.1em;
    }

    .page-support__intro-title,
    .page-support__section-title {
        font-size: 2em;
    }

    .page-support__cta-title {
        font-size: 2.5em;
    }

    .page-support__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-support__hero {
        padding: 60px 20px;
    }

    .page-support__hero-title {
        font-size: 2.2em;
    }

    .page-support__hero-description {
        font-size: 1em;
    }

    .page-support__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-support__intro,
    .page-support__detail-pages,
    .page-support__cta-section {
        padding: 40px 0;
    }

    .page-support__intro-title,
    .page-support__section-title {
        font-size: 1.8em;
    }

    .page-support__cta-title {
        font-size: 2em;
    }

    .page-support__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-support__grid {
        grid-template-columns: 1fr;
    }

    .page-support__card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 1.8em;
    }

    .page-support__hero-description {
        font-size: 0.9em;
    }

    .page-support__intro-title,
    .page-support__section-title {
        font-size: 1.5em;
    }

    .page-support__cta-title {
        font-size: 1.8em;
    }

    .page-support__cta-button,
    .page-support__cta-button--large {
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}