/*:root {
    --primary-color: #023b6d;
    --primary-light: #009bd9;
    --primary-hover: #00a6e8;
    --bg-light: #f5f8fa;
    --bg-blue-light: #f4faff;
}*/

/*:root {
    --primary-color: #006d75;      !* teal *!
    --primary-light: #0097a7;      !* lighter teal *!
    --primary-hover: #00bcd4;      !* bright cyan hover *!
    --bg-light: #e0f7fa;           !* soft light cyan background *!
    --bg-blue-light: #b2ebf2;      !* slightly darker section bg *!
}*/


:root {
    --primary-color: #283593;      /* dark indigo */
    --primary-light: #5c6bc0;      /* soft indigo */
    --primary-hover: #7986cb;      /* hover lavender */
    --bg-light: #e8eaf6;           /* very light indigo background */
    --bg-blue-light: #c5cae9;      /* card/section background */
}

/*:root {
    --primary-color: #4a148c;      !* dark purple *!
    --primary-light: #7b1fa2;      !* lighter purple *!
    --primary-hover: #9c27b0;      !* hover purple *!
    --bg-light: #f5f0fa;           !* very light purple background *!
    --bg-blue-light: #f3e5f5;      !* light card/section background *!
}*/

/*:root {
    --primary-color: #4a4a4a;      !* main gray *!
    --primary-light: #6b6b6b;      !* lighter gray *!
    --primary-hover: #828282;      !* hover gray *!
    --bg-light: #f0f0f0;           !* light background *!
    --bg-blue-light: #e0e0e0;      !* slightly darker block background *!
}*/

/*:root {
    --primary-color: #f07714;     
    --primary-light: #fb9f2d;     
    --primary-hover: #f6b759;    
    --bg-light: #ffffff;          
    --bg-blue-light: #ffffff;    
}*/

/*:root {
    --primary-color: #f57f17;      !* golden yellow *!
    --primary-light: #ffb300;      !* lighter yellow *!
    --primary-hover: #ffc107;      !* hover yellow *!
    --bg-light: #fff8e1;           !* very light yellow background *!
    --bg-blue-light: #fff3e0;      !* light card/section background *!
}*/

/*:root {
    --primary-color: #d84315;      !* deep coral *!
    --primary-light: #ff5722;      !* lighter coral *!
    --primary-hover: #ff7043;      !* hover pinkish coral *!
    --bg-light: #fff3ef;           !* soft warm background *!
    --bg-blue-light: #ffe0d5;      !* card/section background *!
}*/

/*:root {
    --primary-color: #b71c1c;      !* deep red *!
    --primary-light: #e53935;      !* bright red *!
    --primary-hover: #ef5350;      !* hover red-orange *!
    --bg-light: #ffebee;           !* soft pinkish background *!
    --bg-blue-light: #ffcdd2;      !* card/section background *!
}*/


/*:root {
    --primary-color: #4caf50;     
    --primary-light: #239829;     
    --primary-hover: #9ddc9f;    
    --bg-light: #f1f8e9;         
    --bg-blue-light: #f9fff6;     
}*/

/*:root {
    --primary-color: #1b5e20;      !* dark green *!
    --primary-light: #43a047;      !* lighter green *!
    --primary-hover: #66bb6a;      !* hover green *!
    --bg-light: #f0f8f1;           !* very light green background *!
    --bg-blue-light: #e8f5e9;      !* light card/section background *!
}*/

/*:root {
    --primary-color: #afb42b;      !* dark lime *!
    --primary-light: #cddc39;      !* bright lime *!
    --primary-hover: #dce775;      !* hover lime *!
    --bg-light: #f9fbe7;           !* light lime background *!
    --bg-blue-light: #f0f4c3;      !* section background *!
}*/




* {
    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;
    }
}