/* About Us Page Styles */

.about-us-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.intro {
    text-align: left;
    margin-bottom: 40px;
}

.intro h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.2rem;
}

.subject-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.subject-box {
    background: #333;
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 calc(50% - 20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.subject-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.subject-box i {
    color: #00b4d8;
    margin-bottom: 10px;
}

.subject-box h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.subject-box img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.subject-box p {
    font-size: 1rem;
}

.cta {
    text-align: center;
    margin-top: 40px;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .subject-box {
        flex: 1 1 100%;
    }
}


/* Privacy Policy Page Styles */

.privacy-policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.content {
    background: #333;
    border-radius: 10px;
    padding: 20px;
}

.section {
    margin-bottom: 20px;
}

.section h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.section p {
    font-size: 1rem;
    line-height: 1.6;
}

.cta {
    text-align: center;
    margin-top: 20px;
}

.cta p {
    font-size: 1.2rem;
}

.ad-section {
    background: #222;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 10px;
    }

    .content {
        padding: 15px;
    }
}


/* Terms of Service Page Styles */


.terms-of-service-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}


.section {
    margin-bottom: 20px;
}

.section h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.section p {
    font-size: 1rem;
    line-height: 1.6;
}

.ad-section {
    background: #222;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-of-service-container {
        padding: 10px;
    }

    .content {
        padding: 15px;
    }
}


/* Contact Page Styles */

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.contact-info {
    text-align: left;
    margin-bottom: 40px;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.info-tile {
    background: linear-gradient(135deg, #023e8a 0%, #0077b6 100%);
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50% - 40px);
    transition: background 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.info-tile i {
    font-size: 2rem;
    color: #00b4d8;
}

.info-tile h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.info-tile p {
    font-size: 1rem;
    line-height: 1.6;
}

.info-tile:hover {
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
}

.ad-section {
    background: #222;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        padding: 10px;
    }

    .contact-grid {
        flex-direction: column;
        align-items: center;
    }

    .info-tile {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 10px 0;
    }
}


/*_____________________________ CONFIRMATION PAGE _________________________________*/
/* Confirmation container */
.confirmation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

/* Confirmation card */
.confirmation-card {
    background: linear-gradient(145deg, #1f1f1f, #2e2e2e);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Confirmation icon */
.confirmation-icon {
    color: #00b4d8;
    font-size: 100px;
    margin-bottom: 20px;
}

/* Headings and text */
.confirmation-card h1 {
    font-size: 28px;
    margin: 10px 0;
    color: #00b4d8;
}

.confirmation-card p {
    font-size: 16px;
    color: #b0b0b0;
}


/* Confirmation container */
.error-confirmation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;    
}

/* Confirmation card */
.error-confirmation-card {
    background: linear-gradient(145deg, #1f1f1f, #2e2e2e);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Confirmation icon */
.error-confirmation-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.error-icon {
    color: #e63946;
}

/* Headings and text */
.error-confirmation-card h1 {
    font-size: 28px;
    margin: 10px 0;
}

.error-confirmation-card p {
    font-size: 16px;
    color: #b0b0b0;
}

.error-confirmation-card.error h1 {
    color: #e63946;
}
.error{
    color: #e63946;
}


/*------- 404 Not Found----------------*/
/* Error content */
.error-content {

    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Error heading */
.error-content h1 {
    font-size: 100px;
    margin: 0;
    margin-top:100px;
}

.error-content h2 {
    font-size: 28px;
    margin: 10px 0;
}

/* Error text */
.error-content p {
    font-size: 16px;
    color: #b0b0b0;
}

