/* Reset and base styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #2d2b2b;
    min-height: 100vh;
    background: linear-gradient(to bottom, #773D7E, #CCCCCC);
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff; 
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

/* Logo at top */
.logo-top {
    text-align: center;
    margin-bottom: 20px;
}

.inside-logo {
    max-width: 200px;
    height: auto;
}

.text-side{
    width: 90%;
}
/* Tagline and description */
.tagline {
    font-size: 1.9em;
    color: #773d7e;
    opacity: 0.9;
    margin-bottom: 10px;
}

.description-text p {
    margin: 0 0 25px 0;
    line-height: 1.4;
    font-size: 1.8em;
    color: #5b5b5b;
}

/* Contact heading */
.contact-heading {
    font-size: 1.2em;
    color: #773d7e;
    margin: 20px 0 15px 0;
    font-weight: 600;
}

/* Contact section */
.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 600px;
    /* margin: 0 auto 20px auto; */
    gap: 30px;
    background-color: #f8f8f8;
    /* padding: 20px; */
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}



.contact-info div p {
    margin: 5px 0;
    font-size: 0.95em;
    line-height: 1.4;
}

.contact-info strong {
    color: #773d7e;
    font-size: 1.05em;
}

/* Footer styles */
.site-footer {
    background-color: rgba(0, 0, 0, 0.15); 
    padding: 15px 20px;
    text-align: center;
    font-size: 0.85em;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-content .website-name {
    font-weight: 600;
}

.footer-content .copyright {
    opacity: 0.7;
}

/* Responsive design */
@media (max-width: 650px) {
    .content-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info div {
        margin-bottom: 15px;
    }
}

.address {
    width: 40%;
}

.contact{
    width: 60%;
}