body {
    font-family: Arial, sans-serif; margin: 0; padding: 0; background: url("/Styles/Images/background.webp") no-repeat center center fixed; background-size: cover; color: #ffffff; position: relative; background-color: #000000;
}
body::before {
    content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); z-index: -1;
}   
/* General styling for the main section */
main {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    background-color: rgba(26, 26, 29, 0.8);
    border-radius: 10px;
    color: #ffffff;
}
h1 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #FCF596;
    text-align: center;
    margin-bottom: 20px;
}
h2{
    font-size: 2rem;
}
h3{font-size: 1.5rem;
}
ul li{
    line-height: 1.6;
}
.img-blogs img{
    max-width: 100%;
    height: 400px;
    display: block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

a{
    color: #FCF596; font-weight: bold; text-decoration: none;
}
a:hover{
    color: white;
}
.contact-header h1 {
    color: #FCF596;
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.contact-header p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Contact information section */
.contact-info h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #FCF596;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-info a {
    color: #FCF596;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact form section */
.contact-form h2 {
    font-size: 22px;
    color: #FCF596;
    margin-bottom: 10px;
}

.contact-us-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-us-form label {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-us-form input,
.contact-us-form textarea {
    width: 60%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #1A1A1D;
    color: #ffffff;
}

.contact-us-form input::placeholder,
.contact-us-form textarea::placeholder {
    color: #aaa;
}

.contact-us-form button {
    padding: 10px;
    margin-left: 100px;
    background-color: #FCF596;
    color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    width: 40%;
    text-align: center;
}

.contact-us-form button:hover {
    background-color: #b3ad66;
}


main h2 {
    color: #FCF596;
    font-size: 28px;
    margin-bottom: 20px;
}
main h3 {
    color: #FCF596;
    font-size: 24px;
    margin-bottom: 20px;
}

main p {
    line-height: 1.8;
    margin-bottom: 15px;
}
.highlighted-link {
    font-size: 18px; /* Customize font size */
    color: #FFD700; /* Gold color for text */
    text-align: center; /* Center align text */
    background-color: #1A1A1D; /* Dark background */
    padding: 10px; /* Add some padding */
    border-radius: 5px; /* Rounded corners */
}
.highlighted-link a {
    color: #FCF596; /* Yellow link color */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Make the link bold */
}
.highlighted-link a:hover {
    color: #b3ad66; /* Slightly darker yellow on hover */
    text-decoration: underline; /* Add underline on hover */
}

section {
    margin-bottom: 40px;
}
.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.promo-item {
    background-color: #1A1A1D;
    text-align: center;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.promo-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.promo-item p {
    font-size: 18px;
    color: #ffffff;
    margin: 10px 0;
    font-weight: bold;
}
.promo-button {
    display: inline-block;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 14px;
    color: #000000;
    background-color: #FCF596;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.promo-button:hover {
    background-color: #b3ad66;
    box-shadow: 0 0 10px 5px #FCF596;
}

.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination button {
    background-color: #FFD700;
    color: black;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
}

.pagination button:disabled {
    background-color: #FCF596;
    cursor: not-allowed;
}

.pagination .page-number {
    font-size: 18px;
    margin: 0 10px;
}

@media (max-width: 780px) {
    body {
        font-size: 14px;
    }
    .promo-grid {
        grid-template-columns: 1fr;
    }

    main {
        padding: 10px;
    }
    h1{
        font-size: 26px;
    }

    main h2 {
        font-size: 24px;
    }
    .contact-us-form button {
        text-align: center;
        margin-left: 30%;
    }
    .img-blogs img{
        max-width: 100%;
        height: 200px;
        display: block;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin: 0 auto;
    }
}
