* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
    

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--bg-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.container {
    width: 100%;
    max-width: 1420px;
}

.card-border {
    border: 2px solid var(--primary-light);
    background: linear-gradient(to bottom, white, var(--bg-blue-light));
}




/* Header Styles */
header {
    background-color: var(--primary-color);
    padding: 0.75rem 0;
}


.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.logo img {
    height: 30px;
    width: auto;
}

.logo span {
    color: var(--primary-light);
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
}

.contact-item i {
    color: var(--primary-light);
}

/* Main Content */
main {
    flex: 1;
    padding: 1.5rem 0;
}


.submit-button {
    width: 100%;
    background: var(--primary-light);
    color: white;
    padding: .825rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: bold;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background: var(--primary-hover);
}

.secondary-button {
    width: 100%;
    background: var(--bg-light);
    color: var(--primary-hover);
    padding: .825rem;
    border: 1px solid var(--primary-hover);
    border-radius: 0.375rem;
    font-weight: bold;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.2s;
}

.secondary-button:hover {
    background: var(--primary-hover);
    color: white;
}


/* Footer */
.about-section {
    background: var(--bg-blue-light);
    padding: 1rem 3rem 2rem;
}

.about-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.about-text {
    color: #4b5563;
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
    line-height: 1.75;
}

.footer-bottom {
    background: var(--primary-color);
    color: white;
    padding: 1rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.designed-by {
    font-size: 12px;
}

.footer-link {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary-hover);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .contact-info {
        gap: 0;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}