:root {

    --brand-primary: #199fb1;

    --brand-secondary: #0d5c75;

    --brand-gradient: linear-gradient(135deg, #199fb1 0%, #0d5c75 100%);

    --bg-light: #f4f9fa;

}



body {

    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    background-color: var(--bg-light);

    color: #333;

    overflow-x: hidden;

}



/* Navbar Styling */

#header {

    background: #fff;

    transition: all 0.5s;

    z-index: 997;

    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);

}



.get-started-btn {

    background: var(--brand-gradient);

    color: white;

    padding: 8px 25px;

    border-radius: 50px;

    text-decoration: none;

    transition: 0.3s;

    border: none;

    font-weight: 600;

}



.get-started-btn:hover {

    opacity: 0.9;

    transform: translateY(-2px);

    color: white;

}



/* Hero Section */

.hero-section {

    background: var(--brand-gradient);

    padding: 120px 0 60px;

    text-align: center;

    color: white;

    clip-path: ellipse(150% 100% at 50% 0%);

}



.hero-section h1 {

    font-size: 48px;

    font-weight: 700;

    margin-bottom: 20px;

}



/* FAQ Section */

.faq-container {

    max-width: 900px;

    margin: -50px auto 80px;

    background: white;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    position: relative;

    z-index: 10;

}



.faq-controls {

    display: flex;

    justify-content: flex-end;

    margin-bottom: 20px;

}



.faq-controls a {

    color: var(--brand-primary);

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    margin-left: 20px;

}



.faq-item {

    margin-bottom: 15px;

    border: 1px solid #eef2f3;

    border-radius: 12px;

    overflow: hidden;

    transition: 0.3s;

}



.faq-item:hover {

    border-color: var(--brand-primary);

}



.faq-question {

    width: 100%;

    padding: 20px 25px;

    background: #fff;

    border: none;

    display: flex;

    justify-content: space-between;

    align-items: center;

    text-align: left;

    font-size: 18px;

    font-weight: 600;

    color: var(--brand-secondary);

    cursor: pointer;

    transition: 0.3s;

}



.faq-question:hover {

    background: #fafdfd;

}



.faq-question i {

    font-size: 14px;

    transition: 0.3s;

    color: var(--brand-primary);

}



.faq-question.active {

    background: #f0fbfc;

    color: var(--brand-primary);

}



.faq-question.active i {

    transform: rotate(180deg);

}



.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.3s ease-out;

    background: #fff;

}



.faq-answer-content {

    padding: 5px 25px 5px 25px;

    color: #666;

    line-height: 1.6;

}

/* Footer */
#footer {
    background: var(--brand-secondary);
    color: white;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #bef6fd !important;
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 10px;
    transition: 0.3s;
}



.social-links a:hover {
    background: var(--brand-primary);
    transform: translateY(-3px);
}



.back-to-top {

    position: fixed;

    bottom: 20px;

    right: 20px;

    background: var(--brand-primary);

    color: white;

    width: 45px;

    height: 45px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    box-shadow: 0 4px 10px rgba(0,0,0,0.2);

    z-index: 100;

}

.font-bold {
    font-weight: 700;
}