:root {
--primary-color: rgb(70, 130, 180);
--secondary-color: rgb(176, 196, 222);
--accent-color: rgb(25, 25, 112);
--text-dark: #1a1a1a;
--text-light: #666;
--white: #ffffff;
--bg-light: #f8f9fa;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: var(--text-dark);
}

.main-navigation {
background: var(--white);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
height: 70px;
}

.logo-section .site-logo {
font-size: 22px;
font-weight: bold;
color: var(--accent-color);
text-decoration: none;
}

.nav-menu {
display: flex;
list-style: none;
gap: 30px;
}

.nav-menu li a {
text-decoration: none;
color: var(--text-dark);
font-size: 15px;
transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active-link {
color: var(--primary-color);
}

.menu-toggle {
display: none;
flex-direction: column;
cursor: pointer;
gap: 5px;
}

.menu-toggle span {
width: 25px;
height: 3px;
background: var(--accent-color);
transition: 0.3s;
}

@media (max-width: 768px) {
.menu-toggle {
display: flex;
}

.nav-menu {
display: none;
position: absolute;
top: 70px;
left: 0;
width: 100%;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
gap: 15px;
}
}

.site-section-hero {
position: relative;
height: 100vh;
min-height: 550px;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
display: flex;
align-items: center;
justify-content: center;
margin-top: 70px;
}

.hero-overlay {
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
background: rgba(0, 0, 0, 0.45);
z-index: 1;
}

.hero-content-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
position: relative;
z-index: 2;
}

.hero-text-center {
text-align: center;
}

.hero-main-title {
font-size: 2.8rem;
color: var(--white);
margin-bottom: 25px;
font-weight: 700;
}

.text-uppercase {
text-transform: uppercase;
}

.hero-description {
font-size: 1.2rem;
color: var(--white);
margin-bottom: 35px;
line-height: 1.7;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.hero-cta-wrapper {
margin-top: 30px;
}

.btn-hero {
display: inline-block;
padding: 16px 40px;
text-decoration: none;
border-radius: 30px;
font-size: 14px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 0.1em;
transition: all 0.3s ease;
}

.btn-primary-hero {
background-color: var(--primary-color);
color: var(--white);
border: 2px solid var(--primary-color);
}

.btn-primary-hero:hover {
background-color: transparent;
border-color: var(--white);
}

@media (max-width: 768px) {
.hero-main-title {
font-size: 2rem;
}

.hero-description {
font-size: 1rem;
}
}

.site-footer {
background: var(--accent-color);
color: var(--white);
padding: 50px 0 20px 0;
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 35px;
margin-bottom: 40px;
}

.footer-column .footer-heading {
font-size: 19px;
margin-bottom: 18px;
color: var(--white);
}

.footer-text {
font-size: 14px;
line-height: 1.7;
color: rgba(255,255,255,0.8);
}

.footer-links-list {
list-style: none;
}

.footer-links-list li {
margin-bottom: 10px;
}

.footer-links-list li a {
color: rgba(255,255,255,0.8);
text-decoration: none;
font-size: 14px;
transition: color 0.3s;
}

.footer-links-list li a:hover {
color: var(--white);
}

.footer-contact-list {
list-style: none;
}

.contact-item {
margin-bottom: 12px;
font-size: 14px;
}

.contact-label {
font-weight: bold;
display: block;
margin-bottom: 4px;
}

.contact-value {
color: rgba(255,255,255,0.8);
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.2);
padding-top: 25px;
text-align: center;
}

.copyright-text {
font-size: 13px;
color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
.footer-grid {
grid-template-columns: 1fr;
gap: 25px;
}
}













.investing-mindset-section {
padding: 65px 0;
background: #ffffff;
}

.content-wrapper {
max-width: 1140px;
margin: 0 auto;
padding: 0 20px;
}

.section-header-area {
text-align: center;
margin-bottom: 55px;
}

.section-subtitle-text {
font-size: 13px;
display: block;
margin-bottom: 8px;
color: rgb(70, 130, 180);
text-transform: uppercase;
letter-spacing: 2.2px;
font-weight: 700;
}

.main-section-heading {
font-size: 36px;
font-weight: 700;
color: rgb(25, 25, 112);
line-height: 1.3;
margin: 0;
}

@media (max-width: 767px) {
.main-section-heading {
font-size: 27px;
}
}

.mindset-content-grid {
display: grid;
gap: 42px;
}

.text-content-block {
background: #f8f9fa;
padding: 35px 32px;
border-left: 4px solid rgb(176, 196, 222);
transition: all 0.35s ease;
}

.text-content-block:hover {
border-left-color: rgb(70, 130, 180);
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.content-block-title {
font-size: 24px;
font-weight: 600;
color: rgb(25, 25, 112);
margin-bottom: 20px;
margin-top: 0;
}

.content-paragraph {
margin-bottom: 18px;
color: #555;
font-size: 16px;
line-height: 1.75;
}

.content-paragraph:last-child {
margin-bottom: 0;
}

@media (max-width: 768px) {
.investing-mindset-section {
padding: 45px 0;
}

.section-header-area {
margin-bottom: 38px;
}

.mindset-content-grid {
gap: 28px;
}

.text-content-block {
padding: 25px 20px;
}

.content-block-title {
font-size: 21px;
}

.content-paragraph {
font-size: 15px;
}
}












.financial-health-check-section {
padding: 70px 0;
background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.container-fluid-custom {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.section-intro-header {
text-align: center;
margin-bottom: 50px;
}

.subtitle-label {
font-size: 12px;
display: inline-block;
margin-bottom: 10px;
color: rgb(70, 130, 180);
text-transform: uppercase;
letter-spacing: 2.5px;
font-weight: 700;
}

.section-main-title {
font-size: 38px;
font-weight: 700;
color: rgb(25, 25, 112);
line-height: 1.25;
margin: 0 0 18px 0;
}

.section-intro-text {
font-size: 17px;
color: #555;
line-height: 1.7;
max-width: 780px;
margin: 0 auto;
}

@media (max-width: 767px) {
.section-main-title {
font-size: 26px;
}

.section-intro-text {
font-size: 15px;
}
}

.health-check-content-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 35px;
margin-bottom: 45px;
}

@media (max-width: 968px) {
.health-check-content-layout {
grid-template-columns: 1fr;
gap: 30px;
}
}

.checklist-column-left,
.checklist-column-right {
display: flex;
flex-direction: column;
gap: 35px;
}

.checklist-box {
background: #ffffff;
padding: 32px 28px;
border-radius: 8px;
box-shadow: 0 3px 12px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.checklist-box:hover {
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.checklist-image-container {
width: 100%;
height: 220px;
overflow: hidden;
border-radius: 6px;
margin-bottom: 22px;
}

.checklist-img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.checklist-heading {
font-size: 22px;
font-weight: 700;
color: rgb(25, 25, 112);
margin: 0 0 15px 0;
}

.checklist-description {
font-size: 15px;
color: #666;
line-height: 1.7;
margin-bottom: 22px;
}

.checklist-items-wrapper {
display: flex;
flex-direction: column;
gap: 13px;
}

.checklist-item {
display: flex;
align-items: flex-start;
gap: 12px;
}

.check-icon {
flex-shrink: 0;
width: 22px;
height: 22px;
background: rgb(70, 130, 180);
color: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
font-weight: bold;
margin-top: 2px;
}

.check-text {
font-size: 14.5px;
color: #444;
line-height: 1.6;
}

.check-text strong {
color: rgb(25, 25, 112);
font-weight: 700;
}

.readiness-assessment-box {
background: rgb(25, 25, 112);
padding: 40px 35px;
border-radius: 8px;
text-align: center;
}

.assessment-title {
font-size: 28px;
font-weight: 700;
color: #ffffff;
margin: 0 0 18px 0;
}

.assessment-text {
font-size: 16px;
color: rgba(255,255,255,0.9);
line-height: 1.8;
max-width: 900px;
margin: 0 auto;
}

@media (max-width: 767px) {
.financial-health-check-section {
padding: 50px 0;
}

.section-intro-header {
margin-bottom: 35px;
}

.checklist-box {
padding: 24px 20px;
}

.checklist-heading {
font-size: 20px;
}

.checklist-image-container {
height: 180px;
}

.readiness-assessment-box {
padding: 30px 22px;
}

.assessment-title {
font-size: 24px;
}

.assessment-text {
font-size: 15px;
}
}













.risk-profiling-section {
padding: 68px 0;
background: #ffffff;
}

.main-container-wrapper {
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
}

.header-section-top {
text-align: center;
margin-bottom: 48px;
}

.section-tag-subtitle {
font-size: 13px;
display: inline-block;
margin-bottom: 10px;
color: rgb(70, 130, 180);
text-transform: uppercase;
letter-spacing: 2.3px;
font-weight: 700;
}

.primary-section-heading {
font-size: 37px;
font-weight: 700;
color: rgb(25, 25, 112);
line-height: 1.3;
margin: 0 0 16px 0;
}

.intro-description-text {
font-size: 16.5px;
color: #555;
line-height: 1.75;
max-width: 800px;
margin: 0 auto;
}

@media (max-width: 767px) {
.primary-section-heading {
font-size: 27px;
}

.intro-description-text {
font-size: 15px;
}
}

.risk-concepts-explanation {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
margin-bottom: 55px;
}

@media (max-width: 868px) {
.risk-concepts-explanation {
grid-template-columns: 1fr;
gap: 25px;
}
}

.concept-card {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
padding: 30px 28px;
border-radius: 10px;
border: 2px solid transparent;
transition: all 0.3s ease;
}

.concept-card:hover {
border-color: rgb(176, 196, 222);
transform: translateY(-3px);
box-shadow: 0 5px 18px rgba(0,0,0,0.1);
}

.concept-icon-wrapper {
margin-bottom: 15px;
}

.concept-icon {
font-size: 42px;
display: inline-block;
}

.concept-title-heading {
font-size: 23px;
font-weight: 700;
color: rgb(25, 25, 112);
margin: 0 0 14px 0;
}

.concept-description-paragraph {
font-size: 15px;
color: #555;
line-height: 1.75;
margin: 0;
}

.quiz-container-section {
background: #f8f9fa;
padding: 42px 35px;
border-radius: 10px;
box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.quiz-header-area {
text-align: center;
margin-bottom: 38px;
}

.quiz-main-title {
font-size: 29px;
font-weight: 700;
color: rgb(25, 25, 112);
margin: 0 0 12px 0;
}

.quiz-intro-paragraph {
font-size: 15.5px;
color: #666;
margin: 0;
}

.quiz-form-wrapper {
max-width: 850px;
margin: 0 auto;
}

.question-block {
background: #ffffff;
padding: 28px 25px;
margin-bottom: 22px;
border-radius: 8px;
border-left: 4px solid rgb(70, 130, 180);
}

.question-text {
font-size: 16.5px;
color: rgb(25, 25, 112);
margin: 0 0 18px 0;
font-weight: 600;
}

.options-wrapper {
display: flex;
flex-direction: column;
gap: 12px;
}

.option-label {
display: flex;
align-items: center;
padding: 14px 16px;
background: #f8f9fa;
border-radius: 6px;
cursor: pointer;
transition: all 0.25s ease;
border: 2px solid transparent;
}

.option-label:hover {
background: #e9ecef;
border-color: rgb(176, 196, 222);
}

.radio-input {
margin-right: 12px;
width: 18px;
height: 18px;
cursor: pointer;
}

.option-text {
font-size: 15px;
color: #444;
flex: 1;
}

.quiz-button-area {
text-align: center;
margin-top: 32px;
}

.submit-quiz-btn {
background: rgb(70, 130, 180);
color: #ffffff;
padding: 16px 45px;
font-size: 16px;
font-weight: 700;
border: none;
border-radius: 30px;
cursor: pointer;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
}

.submit-quiz-btn:hover {
background: rgb(25, 25, 112);
transform: scale(1.05);
}

.results-container {
margin-top: 35px;
animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.result-content-box {
background: linear-gradient(135deg, rgb(25, 25, 112) 0%, rgb(70, 130, 180) 100%);
padding: 38px 32px;
border-radius: 10px;
color: #ffffff;
}

.result-title {
font-size: 30px;
font-weight: 700;
margin: 0 0 20px 0;
text-align: center;
}

.result-description {
font-size: 16px;
line-height: 1.8;
margin-bottom: 22px;
}

.result-description p {
margin-bottom: 12px;
}

.result-recommendation {
background: rgba(255,255,255,0.15);
padding: 20px 22px;
border-radius: 8px;
border-left: 4px solid #ffffff;
}

.result-recommendation p {
margin: 0 0 10px 0;
font-size: 15.5px;
line-height: 1.7;
}

.result-recommendation p:last-child {
margin-bottom: 0;
}

.result-recommendation strong {
font-weight: 700;
}

@media (max-width: 767px) {
.risk-profiling-section {
padding: 48px 0;
}

.quiz-container-section {
padding: 28px 20px;
}

.question-block {
padding: 20px 18px;
}

.submit-quiz-btn {
padding: 14px 35px;
font-size: 15px;
}

.result-content-box {
padding: 28px 22px;
}

.result-title {
font-size: 25px;
}
}














.asset-classes-section {
padding: 72px 0;
background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.container-main-width {
max-width: 1180px;
margin: 0 auto;
padding: 0 20px;
}

.section-header-intro {
text-align: center;
margin-bottom: 45px;
}

.tag-subtitle {
font-size: 12.5px;
display: inline-block;
margin-bottom: 12px;
color: rgb(70, 130, 180);
text-transform: uppercase;
letter-spacing: 2.4px;
font-weight: 700;
}

.heading-primary-title {
font-size: 39px;
font-weight: 700;
color: rgb(25, 25, 112);
line-height: 1.25;
margin: 0 0 18px 0;
}

.description-intro-paragraph {
font-size: 17px;
color: #555;
line-height: 1.8;
max-width: 820px;
margin: 0 auto;
}

@media (max-width: 767px) {
.heading-primary-title {
font-size: 28px;
}

.description-intro-paragraph {
font-size: 15.5px;
}
}

.analogy-box-wrapper {
background: linear-gradient(135deg, rgb(70, 130, 180) 0%, rgb(25, 25, 112) 100%);
padding: 35px 32px;
border-radius: 12px;
margin-bottom: 52px;
box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.analogy-content {
color: #ffffff;
}

.analogy-title {
font-size: 26px;
font-weight: 700;
margin: 0 0 16px 0;
color: #ffffff;
}

.analogy-text {
font-size: 16px;
line-height: 1.85;
margin: 0;
color: rgba(255,255,255,0.95);
}

.asset-classes-grid {
display: grid;
gap: 38px;
margin-bottom: 48px;
}

.asset-class-card {
background: #ffffff;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.09);
transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.asset-class-card:hover {
transform: translateY(-6px);
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.asset-image-container {
width: 100%;
height: 260px;
overflow: hidden;
}

.asset-img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.asset-card-content {
padding: 32px 28px;
}

.asset-icon-badge {
display: inline-block;
font-size: 38px;
margin-bottom: 12px;
}

.asset-class-title {
font-size: 26px;
font-weight: 700;
color: rgb(25, 25, 112);
margin: 0 0 6px 0;
}

.asset-class-subtitle {
font-size: 15px;
color: rgb(70, 130, 180);
font-weight: 600;
margin: 0 0 18px 0;
text-transform: uppercase;
letter-spacing: 0.8px;
}

.asset-description {
font-size: 15.5px;
color: #555;
line-height: 1.75;
margin-bottom: 24px;
}

.characteristics-list {
background: #f8f9fa;
padding: 20px 18px;
border-radius: 8px;
margin-bottom: 22px;
}

.characteristic-item {
display: flex;
flex-direction: column;
margin-bottom: 14px;
padding-bottom: 14px;
border-bottom: 1px solid #e0e0e0;
}

.characteristic-item:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}

.char-label {
font-size: 14px;
font-weight: 700;
color: rgb(25, 25, 112);
margin-bottom: 4px;
}

.char-value {
font-size: 14.5px;
color: #666;
}

.asset-benefits-box {
background: linear-gradient(135deg, rgba(70, 130, 180, 0.1) 0%, rgba(176, 196, 222, 0.15) 100%);
padding: 18px 16px;
border-radius: 8px;
border-left: 4px solid rgb(70, 130, 180);
}

.benefits-title {
font-size: 15px;
font-weight: 700;
color: rgb(25, 25, 112);
margin: 0 0 8px 0;
}

.benefits-text {
font-size: 14.5px;
color: #555;
line-height: 1.7;
margin: 0;
}

.integration-summary-box {
background: #ffffff;
padding: 38px 35px;
border-radius: 10px;
box-shadow: 0 3px 15px rgba(0,0,0,0.08);
border-top: 5px solid rgb(70, 130, 180);
}

.summary-heading {
font-size: 27px;
font-weight: 700;
color: rgb(25, 25, 112);
margin: 0 0 20px 0;
text-align: center;
}

.summary-paragraph {
font-size: 16px;
color: #555;
line-height: 1.8;
margin-bottom: 16px;
}

.summary-paragraph:last-child {
margin-bottom: 0;
}

@media (max-width: 767px) {
.asset-classes-section {
padding: 52px 0;
}

.analogy-box-wrapper {
padding: 25px 22px;
margin-bottom: 38px;
}

.analogy-title {
font-size: 22px;
}

.analogy-text {
font-size: 15px;
}

.asset-classes-grid {
gap: 28px;
}

.asset-image-container {
height: 200px;
}

.asset-card-content {
padding: 24px 20px;
}

.asset-icon-badge {
font-size: 32px;
}

.asset-class-title {
font-size: 23px;
}

.characteristics-list {
padding: 16px 14px;
}

.integration-summary-box {
padding: 28px 22px;
}

.summary-heading {
font-size: 23px;
}

.summary-paragraph {
font-size: 15px;
}
}











/* About Page Specific Styles */

.page-hero-section {
position: relative;
height: 50vh;
min-height: 400px;
background: linear-gradient(135deg, rgb(25, 25, 112) 0%, rgb(70, 130, 180) 100%);
display: flex;
align-items: center;
justify-content: center;
margin-top: 70px;
overflow: hidden;
}

.page-hero-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.hero-overlay-about {
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
background: rgba(0, 0, 0, 0.2);
z-index: 1;
}

.hero-content-about {
max-width: 900px;
margin: 0 auto;
padding: 0 20px;
position: relative;
z-index: 2;
text-align: center;
}

.page-hero-title {
font-size: 3.2rem;
color: #ffffff;
margin-bottom: 20px;
font-weight: 700;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-hero-subtitle {
font-size: 1.4rem;
color: rgba(255,255,255,0.95);
line-height: 1.6;
font-weight: 300;
}

@media (max-width: 768px) {
.page-hero-section {
height: 40vh;
min-height: 320px;
}

.page-hero-title {
font-size: 2rem;
}

.page-hero-subtitle {
font-size: 1.1rem;
}
}

/* Intro Section */
.intro-section {
padding: 70px 0;
background: #ffffff;
}

.content-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.intro-content {
text-align: center;
max-width: 900px;
margin: 0 auto;
}

.section-label {
display: inline-block;
font-size: 12px;
color: rgb(70, 130, 180);
text-transform: uppercase;
letter-spacing: 2.5px;
font-weight: 700;
margin-bottom: 15px;
padding: 8px 20px;
background: rgba(70, 130, 180, 0.1);
border-radius: 20px;
}

.intro-heading {
font-size: 2.5rem;
color: rgb(25, 25, 112);
margin-bottom: 25px;
font-weight: 700;
line-height: 1.3;
}

.intro-text {
font-size: 1.1rem;
color: #555;
line-height: 1.8;
}

@media (max-width: 768px) {
.intro-section {
padding: 50px 0;
}

.intro-heading {
font-size: 1.8rem;
}

.intro-text {
font-size: 1rem;
}
}

/* Roadmap Section */
.roadmap-section {
padding: 80px 0;
background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.roadmap-header {
text-align: center;
margin-bottom: 60px;
}

.roadmap-title {
font-size: 2.6rem;
color: rgb(25, 25, 112);
margin-bottom: 18px;
font-weight: 700;
}

.roadmap-description {
font-size: 1.15rem;
color: #666;
max-width: 700px;
margin: 0 auto;
line-height: 1.7;
}

.steps-timeline {
max-width: 1000px;
margin: 0 auto;
position: relative;
}

.steps-timeline::before {
content: '';
position: absolute;
left: 40px;
top: 60px;
bottom: 60px;
width: 3px;
background: linear-gradient(to bottom, rgb(70, 130, 180), rgb(176, 196, 222));
}

@media (max-width: 768px) {
.steps-timeline::before {
left: 25px;
}
}

.step-card {
position: relative;
margin-bottom: 50px;
display: flex;
gap: 35px;
align-items: flex-start;
}

.step-number {
flex-shrink: 0;
width: 80px;
height: 80px;
background: linear-gradient(135deg, rgb(70, 130, 180), rgb(25, 25, 112));
color: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
font-weight: 700;
box-shadow: 0 4px 15px rgba(70, 130, 180, 0.3);
position: relative;
z-index: 2;
}

.step-content {
flex: 1;
background: #ffffff;
padding: 35px 30px;
border-radius: 12px;
box-shadow: 0 3px 20px rgba(0,0,0,0.08);
border-left: 4px solid rgb(176, 196, 222);
transition: all 0.3s ease;
}

.step-content:hover {
border-left-color: rgb(70, 130, 180);
box-shadow: 0 6px 30px rgba(0,0,0,0.12);
transform: translateY(-3px);
}

.step-title {
font-size: 1.7rem;
color: rgb(25, 25, 112);
margin: 0 0 15px 0;
font-weight: 700;
}

.step-description {
font-size: 1.05rem;
color: #555;
line-height: 1.7;
margin-bottom: 20px;
}

.step-details {
margin-top: 20px;
}

.step-details p {
color: #444;
font-size: 0.95rem;
margin-bottom: 12px;
font-weight: 600;
}

.step-list {
list-style: none;
padding: 0;
margin: 15px 0;
}

.step-list li {
padding: 10px 0 10px 30px;
position: relative;
color: #555;
font-size: 0.95rem;
line-height: 1.6;
}

.step-list li::before {
content: '✓';
position: absolute;
left: 0;
color: rgb(70, 130, 180);
font-weight: bold;
font-size: 1.1rem;
}

.step-ordered-list {
padding-left: 20px;
margin: 15px 0;
}

.step-ordered-list li {
color: #555;
font-size: 0.95rem;
line-height: 1.7;
margin-bottom: 10px;
padding-left: 8px;
}

.step-note,
.step-tip,
.step-warning {
margin-top: 18px;
padding: 15px 18px;
border-radius: 8px;
font-size: 0.95rem;
line-height: 1.6;
}

.step-note {
background: rgba(70, 130, 180, 0.08);
border-left: 4px solid rgb(70, 130, 180);
color: #333;
}

.step-tip {
background: rgba(40, 167, 69, 0.08);
border-left: 4px solid #28a745;
color: #333;
}

.step-warning {
background: rgba(255, 193, 7, 0.08);
border-left: 4px solid #ffc107;
color: #333;
}

@media (max-width: 768px) {
.roadmap-section {
padding: 50px 0;
}

.roadmap-title {
font-size: 1.9rem;
}

.step-card {
gap: 20px;
margin-bottom: 40px;
}

.step-number {
width: 50px;
height: 50px;
font-size: 1.3rem;
}

.step-content {
padding: 25px 20px;
}

.step-title {
font-size: 1.4rem;
}
}

/* Allocation Examples */
.allocation-examples {
margin-top: 20px;
display: flex;
flex-direction: column;
gap: 18px;
}

.allocation-card {
background: #f8f9fa;
padding: 18px 16px;
border-radius: 8px;
}

.allocation-card h4 {
font-size: 1.05rem;
color: rgb(25, 25, 112);
margin: 0 0 12px 0;
font-weight: 700;
}

.allocation-bar {
display: flex;
height: 40px;
border-radius: 6px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.allocation-segment {
display: flex;
align-items: center;
justify-content: center;
font-size: 0.85rem;
font-weight: 600;
color: #ffffff;
text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
transition: all 0.3s ease;
}

.allocation-segment:hover {
filter: brightness(1.1);
}

.allocation-segment.stocks {
background: linear-gradient(135deg, #4682b4, #5a9bd4);
}

.allocation-segment.bonds {
background: linear-gradient(135deg, #8b7d6b, #a89888);
}

.allocation-segment.cash {
background: linear-gradient(135deg, #28a745, #45c763);
}

.allocation-segment.alternatives {
background: linear-gradient(135deg, #6f42c1, #8e5dd4);
}

/* Broker Comparison Section */
.broker-comparison-section {
padding: 80px 0;
background: #ffffff;
}

.comparison-header {
text-align: center;
margin-bottom: 50px;
}

.comparison-title {
font-size: 2.5rem;
color: rgb(25, 25, 112);
margin-bottom: 18px;
font-weight: 700;
}

.comparison-subtitle {
font-size: 1.1rem;
color: #666;
max-width: 800px;
margin: 0 auto;
line-height: 1.7;
}

.broker-table-wrapper {
overflow-x: auto;
margin-bottom: 30px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
border-radius: 10px;
}

.broker-table {
width: 100%;
border-collapse: collapse;
background: #ffffff;
font-size: 0.95rem;
}

.broker-table thead {
background: linear-gradient(135deg, rgb(25, 25, 112), rgb(70, 130, 180));
color: #ffffff;
}

.broker-table th {
padding: 18px 15px;
text-align: left;
font-weight: 700;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.broker-table tbody tr {
border-bottom: 1px solid #e9ecef;
transition: background 0.2s ease;
}

.broker-table tbody tr:hover {
background: rgba(70, 130, 180, 0.05);
}

.broker-table tbody tr:last-child {
border-bottom: none;
}

.broker-table td {
padding: 20px 15px;
color: #444;
}

.broker-name-col {
min-width: 180px;
}

.broker-name-cell {
font-weight: 600;
}

.broker-info {
display: flex;
flex-direction: column;
gap: 6px;
}

.broker-tag {
display: inline-block;
padding: 3px 10px;
border-radius: 12px;
font-size: 0.7rem;
text-transform: uppercase;
font-weight: 700;
letter-spacing: 0.5px;
}

.broker-tag.popular {
background: #28a745;
color: #ffffff;
}

.broker-tag.new {
background: #17a2b8;
color: #ffffff;
}

.broker-tag.advanced {
background: #6f42c1;
color: #ffffff;
}

.comparison-note {
background: rgba(255, 193, 7, 0.1);
padding: 20px 25px;
border-radius: 8px;
border-left: 4px solid #ffc107;
}

.comparison-note p {
margin: 0;
color: #444;
font-size: 0.9rem;
line-height: 1.7;
}

@media (max-width: 968px) {
.broker-comparison-section {
padding: 50px 0;
}

.comparison-title {
font-size: 1.9rem;
}

.broker-table {
font-size: 0.85rem;
}

.broker-table th,
.broker-table td {
padding: 12px 10px;
}
}

/* ETF Recommendations Section */
.etf-recommendations-section {
padding: 80px 0;
background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.etf-header {
text-align: center;
margin-bottom: 50px;
}

.etf-title {
font-size: 2.5rem;
color: rgb(25, 25, 112);
margin-bottom: 18px;
font-weight: 700;
}

.etf-subtitle {
font-size: 1.1rem;
color: #666;
max-width: 800px;
margin: 0 auto;
line-height: 1.7;
}

.etf-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-bottom: 40px;
}

.etf-card {
background: #ffffff;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: all 0.3s ease;
border-top: 4px solid rgb(70, 130, 180);
}

.etf-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.etf-header-box {
background: linear-gradient(135deg, rgba(70, 130, 180, 0.1), rgba(176, 196, 222, 0.15));
padding: 25px 20px;
}

.etf-name {
font-size: 1.3rem;
color: rgb(25, 25, 112);
margin: 0 0 10px 0;
font-weight: 700;
}

.etf-ticker {
display: inline-block;
background: rgb(70, 130, 180);
color: #ffffff;
padding: 6px 16px;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 700;
letter-spacing: 1px;
}

.etf-details {
padding: 20px;
border-bottom: 1px solid #e9ecef;
}

.etf-detail-row {
display: flex;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px solid #f8f9fa;
}

.etf-detail-row:last-child {
border-bottom: none;
}

.etf-label {
font-weight: 600;
color: #555;
font-size: 0.9rem;
}

.etf-value {
color: rgb(70, 130, 180);
font-weight: 600;
font-size: 0.9rem;
}

.etf-description {
padding: 20px;
font-size: 0.95rem;
color: #555;
line-height: 1.7;
}

.etf-disclaimer {
background: rgba(70, 130, 180, 0.08);
padding: 20px 25px;
border-radius: 8px;
border-left: 4px solid rgb(70, 130, 180);
}

.etf-disclaimer p {
margin: 0;
color: #444;
font-size: 0.9rem;
line-height: 1.7;
}

@media (max-width: 768px) {
.etf-recommendations-section {
padding: 50px 0;
}

.etf-title {
font-size: 1.9rem;
}

.etf-grid {
grid-template-columns: 1fr;
}
}

/* Action Plan Section */
.action-plan-section {
padding: 80px 0;
background: #ffffff;
}

.action-plan-box {
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
padding: 50px 40px;
border-radius: 12px;
box-shadow: 0 5px 25px rgba(0,0,0,0.1);
border: 2px solid rgb(176, 196, 222);
}

.action-plan-title {
font-size: 2.2rem;
color: rgb(25, 25, 112);
text-align: center;
margin: 0 0 40px 0;
font-weight: 700;
}

.action-checklist {
max-width: 900px;
margin: 0 auto;
}

.action-item {
display: flex;
gap: 25px;
margin-bottom: 35px;
padding-bottom: 35px;
border-bottom: 2px solid #e9ecef;
}

.action-item:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}

.action-day {
flex-shrink: 0;
width: 100px;
height: 100px;
background: linear-gradient(135deg, rgb(70, 130, 180), rgb(25, 25, 112));
color: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.1rem;
text-align: center;
box-shadow: 0 4px 15px rgba(70, 130, 180, 0.3);
}

.action-content h4 {
font-size: 1.4rem;
color: rgb(25, 25, 112);
margin: 0 0 12px 0;
font-weight: 700;
}

.action-content p {
font-size: 1rem;
color: #555;
line-height: 1.7;
margin: 0;
}

@media (max-width: 768px) {
.action-plan-section {
padding: 50px 0;
}

.action-plan-box {
padding: 35px 25px;
}

.action-plan-title {
font-size: 1.8rem;
}

.action-item {
flex-direction: column;
gap: 15px;
}

.action-day {
width: 80px;
height: 80px;
font-size: 1rem;
}

.action-content h4 {
font-size: 1.2rem;
}
}

/* Final CTA Section */
.final-cta-section {
padding: 80px 0;
background: linear-gradient(135deg, rgb(25, 25, 112) 0%, rgb(70, 130, 180) 100%);
}

.cta-box {
text-align: center;
max-width: 800px;
margin: 0 auto;
}

.cta-title {
font-size: 2.5rem;
color: #ffffff;
margin-bottom: 20px;
font-weight: 700;
}

.cta-text {
font-size: 1.2rem;
color: rgba(255,255,255,0.95);
line-height: 1.8;
margin-bottom: 35px;
}

.cta-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

.cta-button {
display: inline-block;
padding: 16px 35px;
border-radius: 30px;
font-size: 1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
text-decoration: none;
transition: all 0.3s ease;
}

.cta-button.primary {
background: #ffffff;
color: rgb(25, 25, 112);
}

.cta-button.primary:hover {
background: rgb(176, 196, 222);
transform: scale(1.05);
}

.cta-button.secondary {
background: transparent;
color: #ffffff;
border: 2px solid #ffffff;
}

.cta-button.secondary:hover {
background: rgba(255,255,255,0.15);
transform: scale(1.05);
}

@media (max-width: 768px) {
.final-cta-section {
padding: 50px 0;
}

.cta-title {
font-size: 1.9rem;
}

.cta-text {
font-size: 1.05rem;
}

.cta-buttons {
flex-direction: column;
align-items: center;
}

.cta-button {
width: 100%;
max-width: 300px;
}
}













/* Contact Page Specific Styles */

.contact-hero-section {
position: relative;
height: 45vh;
min-height: 350px;
background: linear-gradient(135deg, rgb(25, 25, 112) 0%, rgb(70, 130, 180) 100%);
display: flex;
align-items: center;
justify-content: center;
margin-top: 70px;
overflow: hidden;
}

.contact-hero-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.contact-hero-overlay {
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
background: rgba(0, 0, 0, 0.15);
z-index: 1;
}

.contact-hero-content {
max-width: 900px;
margin: 0 auto;
padding: 0 20px;
position: relative;
z-index: 2;
text-align: center;
}

.contact-hero-title {
font-size: 3.5rem;
color: #ffffff;
margin-bottom: 18px;
font-weight: 700;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
letter-spacing: -1px;
}

.contact-hero-subtitle {
font-size: 1.35rem;
color: rgba(255,255,255,0.95);
line-height: 1.6;
font-weight: 300;
}

@media (max-width: 768px) {
.contact-hero-section {
height: 35vh;
min-height: 280px;
}

.contact-hero-title {
font-size: 2.2rem;
}

.contact-hero-subtitle {
font-size: 1.1rem;
}
}

/* Contact Info Section */
.contact-info-section {
padding: 80px 0;
background: #ffffff;
}

.contact-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.contact-intro {
text-align: center;
margin-bottom: 60px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.contact-label-top {
display: inline-block;
font-size: 12px;
color: rgb(70, 130, 180);
text-transform: uppercase;
letter-spacing: 2.5px;
font-weight: 700;
margin-bottom: 15px;
padding: 8px 20px;
background: rgba(70, 130, 180, 0.1);
border-radius: 20px;
}

.contact-section-title {
font-size: 2.8rem;
color: rgb(25, 25, 112);
margin-bottom: 20px;
font-weight: 700;
line-height: 1.2;
}

.contact-intro-text {
font-size: 1.15rem;
color: #555;
line-height: 1.8;
}

.contact-info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 35px;
}

.contact-info-card {
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
padding: 40px 30px;
border-radius: 12px;
text-align: center;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
transition: all 0.3s ease;
border: 2px solid transparent;
}

.contact-info-card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 35px rgba(0,0,0,0.15);
border-color: rgb(176, 196, 222);
}

.contact-icon-wrapper {
width: 80px;
height: 80px;
margin: 0 auto 25px;
background: linear-gradient(135deg, rgb(70, 130, 180), rgb(25, 25, 112));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 15px rgba(70, 130, 180, 0.3);
}

.contact-icon {
width: 40px;
height: 40px;
color: #ffffff;
}

.contact-card-title {
font-size: 1.5rem;
color: rgb(25, 25, 112);
margin: 0 0 15px 0;
font-weight: 700;
}

.contact-card-text {
font-size: 1.05rem;
color: #555;
margin: 8px 0;
line-height: 1.6;
}

.contact-card-subtext {
font-size: 0.95rem;
color: #888;
margin-top: 10px;
font-style: italic;
}

.contact-link a {
color: rgb(70, 130, 180);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}

.contact-link a:hover {
color: rgb(25, 25, 112);
text-decoration: underline;
}

@media (max-width: 768px) {
.contact-info-section {
padding: 50px 0;
}

.contact-intro {
margin-bottom: 40px;
}

.contact-section-title {
font-size: 2rem;
}

.contact-info-grid {
grid-template-columns: 1fr;
gap: 25px;
}

.contact-info-card {
padding: 30px 20px;
}
}

/* Contact Form Section */
.contact-form-section {
padding: 80px 0;
background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.form-intro {
text-align: center;
margin-bottom: 50px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.form-section-title {
font-size: 2.8rem;
color: rgb(25, 25, 112);
margin-bottom: 20px;
font-weight: 700;
line-height: 1.2;
}

.form-intro-text {
font-size: 1.1rem;
color: #555;
line-height: 1.8;
}

.contact-form-wrapper {
max-width: 700px;
margin: 0 auto;
background: #ffffff;
padding: 50px 45px;
border-radius: 12px;
box-shadow: 0 5px 30px rgba(0,0,0,0.1);
border-top: 5px solid rgb(70, 130, 180);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 25px;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-label {
font-size: 1rem;
font-weight: 600;
color: rgb(25, 25, 112);
margin-bottom: 10px;
display: block;
}

.form-input,
.form-textarea {
width: 100%;
padding: 15px 18px;
font-size: 1rem;
border: 2px solid #e0e0e0;
border-radius: 8px;
transition: all 0.3s ease;
font-family: Arial, sans-serif;
color: #333;
background: #fafafa;
}

.form-input:focus,
.form-textarea:focus {
outline: none;
border-color: rgb(70, 130, 180);
background: #ffffff;
box-shadow: 0 0 0 3px rgba(70, 130, 180, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
color: #999;
}

.form-textarea {
resize: vertical;
min-height: 140px;
line-height: 1.6;
}

.form-button-wrapper {
margin-top: 10px;
}

.form-submit-button {
width: 100%;
padding: 18px 30px;
font-size: 1.1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
color: #ffffff;
background: linear-gradient(135deg, rgb(70, 130, 180), rgb(25, 25, 112));
border: none;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
box-shadow: 0 4px 15px rgba(70, 130, 180, 0.3);
}

.form-submit-button:hover {
transform: translateY(-3px);
box-shadow: 0 6px 25px rgba(70, 130, 180, 0.4);
background: linear-gradient(135deg, rgb(25, 25, 112), rgb(70, 130, 180));
}

.form-submit-button:active {
transform: translateY(-1px);
}

.button-icon {
width: 20px;
height: 20px;
transition: transform 0.3s ease;
}

.form-submit-button:hover .button-icon {
transform: translateX(5px);
}

@media (max-width: 768px) {
.contact-form-section {
padding: 50px 0;
}

.form-section-title {
font-size: 2rem;
}

.contact-form-wrapper {
padding: 35px 25px;
}

.form-submit-button {
padding: 16px 25px;
font-size: 1rem;
}
}

/* Map Section */
.map-section {
padding: 80px 0;
background: #ffffff;
}

.map-header {
text-align: center;
margin-bottom: 40px;
}

.map-title {
font-size: 2.5rem;
color: rgb(25, 25, 112);
margin-bottom: 15px;
font-weight: 700;
}

.map-description {
font-size: 1.1rem;
color: #666;
}

.map-wrapper {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 30px rgba(0,0,0,0.15);
border: 3px solid rgb(176, 196, 222);
}

.map-iframe {
display: block;
width: 100%;
}

@media (max-width: 768px) {
.map-section {
padding: 50px 0;
}

.map-title {
font-size: 2rem;
}

.map-wrapper iframe {
height: 350px;
}
}

/* Form Validation States */
.form-input:invalid:not(:placeholder-shown),
.form-textarea:invalid:not(:placeholder-shown) {
border-color: #dc3545;
}

.form-input:valid:not(:placeholder-shown),
.form-textarea:valid:not(:placeholder-shown) {
border-color: #28a745;
}

/* Loading State */
.form-submit-button:disabled {
background: #cccccc;
cursor: not-allowed;
box-shadow: none;
}

.form-submit-button:disabled:hover {
transform: none;
}













/* Privacy Policy Page Styles */

.privacy-hero {
position: relative;
height: 50vh;
min-height: 400px;
background: linear-gradient(135deg, rgb(25, 25, 112) 0%, rgb(70, 130, 180) 50%, rgb(176, 196, 222) 100%);
display: flex;
align-items: center;
justify-content: center;
margin-top: 70px;
overflow: hidden;
}

.privacy-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
repeating-linear-gradient(
90deg,
transparent,
transparent 50px,
rgba(255,255,255,0.03) 50px,
rgba(255,255,255,0.03) 51px
),
repeating-linear-gradient(
0deg,
transparent,
transparent 50px,
rgba(255,255,255,0.03) 50px,
rgba(255,255,255,0.03) 51px
);
}

.privacy-hero-overlay {
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.1) 0%, transparent 60%);
z-index: 1;
}

.privacy-hero-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 800px;
padding: 0 20px;
}

.privacy-icon-large {
font-size: 5rem;
margin-bottom: 20px;
animation: float 3s ease-in-out infinite;
}

@keyframes float {
0%, 100% {
transform: translateY(0px);
}
50% {
transform: translateY(-15px);
}
}

.privacy-hero-title {
font-size: 3.5rem;
color: #ffffff;
margin-bottom: 15px;
font-weight: 700;
text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
letter-spacing: -1px;
}

.privacy-hero-date {
font-size: 1.1rem;
color: rgba(255,255,255,0.9);
font-weight: 300;
background: rgba(255,255,255,0.15);
padding: 8px 20px;
border-radius: 20px;
display: inline-block;
backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
.privacy-hero {
height: 40vh;
min-height: 320px;
}

.privacy-icon-large {
font-size: 3.5rem;
}

.privacy-hero-title {
font-size: 2.2rem;
}

.privacy-hero-date {
font-size: 0.95rem;
}
}

/* Intro Section */
.privacy-intro-section {
padding: 70px 0 40px 0;
background: #ffffff;
}

.privacy-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.intro-box {
max-width: 900px;
margin: 0 auto;
text-align: center;
background: linear-gradient(135deg, rgba(70, 130, 180, 0.08) 0%, rgba(176, 196, 222, 0.12) 100%);
padding: 45px 40px;
border-radius: 15px;
border: 2px solid rgba(70, 130, 180, 0.2);
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.intro-title {
font-size: 2.2rem;
color: rgb(25, 25, 112);
margin-bottom: 20px;
font-weight: 700;
}

.intro-text {
font-size: 1.15rem;
color: #555;
line-height: 1.8;
}

@media (max-width: 768px) {
.privacy-intro-section {
padding: 50px 0 30px 0;
}

.intro-box {
padding: 30px 25px;
}

.intro-title {
font-size: 1.7rem;
}

.intro-text {
font-size: 1.05rem;
}
}

/* Privacy Content Section */
.privacy-content-section {
padding: 50px 0 80px 0;
background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.privacy-grid {
display: grid;
gap: 35px;
margin-bottom: 50px;
}

.privacy-card {
background: #ffffff;
border-radius: 12px;
padding: 0;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
overflow: hidden;
transition: all 0.3s ease;
border-left: 5px solid transparent;
display: flex;
gap: 0;
}

.privacy-card:nth-child(1) {
border-left-color: #4682b4;
}

.privacy-card:nth-child(2) {
border-left-color: #5a9bd4;
}

.privacy-card:nth-child(3) {
border-left-color: #6fb3e0;
}

.privacy-card:nth-child(4) {
border-left-color: #85c1e9;
}

.privacy-card:nth-child(5) {
border-left-color: #9acfec;
}

.privacy-card:nth-child(6) {
border-left-color: #b0ddf0;
}

.privacy-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card-icon {
flex-shrink: 0;
width: 120px;
background: linear-gradient(135deg, rgba(70, 130, 180, 0.1) 0%, rgba(176, 196, 222, 0.15) 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 3.5rem;
}

.card-content {
flex: 1;
padding: 35px 32px;
}

.card-title {
font-size: 1.8rem;
color: rgb(25, 25, 112);
margin: 0 0 18px 0;
font-weight: 700;
}

.card-text {
font-size: 1.05rem;
color: #555;
line-height: 1.75;
margin-bottom: 22px;
}

.card-details {
background: #f8f9fa;
padding: 20px 18px;
border-radius: 8px;
margin-top: 20px;
}

.detail-item {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 10px 0;
border-bottom: 1px solid #e9ecef;
}

.detail-item:last-child {
border-bottom: none;
padding-bottom: 0;
}

.detail-icon {
flex-shrink: 0;
width: 24px;
height: 24px;
background: linear-gradient(135deg, rgb(70, 130, 180), rgb(25, 25, 112));
color: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.85rem;
font-weight: bold;
margin-top: 2px;
}

.detail-text {
font-size: 0.98rem;
color: #444;
line-height: 1.6;
}

@media (max-width: 868px) {
.privacy-card {
flex-direction: column;
}

.card-icon {
width: 100%;
height: 100px;
font-size: 3rem;
}

.card-content {
padding: 28px 25px;
}
}

@media (max-width: 768px) {
.privacy-content-section {
padding: 40px 0 50px 0;
}

.privacy-grid {
gap: 25px;
margin-bottom: 35px;
}

.card-title {
font-size: 1.5rem;
}

.card-text {
font-size: 1rem;
}
}

/* Notice Box */
.privacy-notice-box {
background: linear-gradient(135deg, rgb(70, 130, 180) 0%, rgb(25, 25, 112) 100%);
padding: 40px 35px;
border-radius: 12px;
display: flex;
gap: 25px;
align-items: flex-start;
margin-bottom: 35px;
box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.notice-icon {
flex-shrink: 0;
font-size: 3rem;
background: rgba(255,255,255,0.2);
width: 80px;
height: 80px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.notice-content {
flex: 1;
}

.notice-title {
font-size: 1.8rem;
color: #ffffff;
margin: 0 0 15px 0;
font-weight: 700;
}

.notice-text {
font-size: 1.05rem;
color: rgba(255,255,255,0.95);
line-height: 1.75;
margin: 0;
}

@media (max-width: 768px) {
.privacy-notice-box {
flex-direction: column;
padding: 30px 25px;
gap: 20px;
align-items: center;
text-align: center;
}

.notice-icon {
font-size: 2.5rem;
width: 70px;
height: 70px;
}

.notice-title {
font-size: 1.5rem;
}

.notice-text {
font-size: 1rem;
}
}

/* Disclaimer */
.privacy-disclaimer {
background: rgba(255, 193, 7, 0.1);
padding: 30px 35px;
border-radius: 12px;
border-left: 5px solid #ffc107;
box-shadow: 0 3px 15px rgba(255, 193, 7, 0.1);
}

.disclaimer-title {
font-size: 1.5rem;
color: rgb(25, 25, 112);
margin: 0 0 15px 0;
font-weight: 700;
display: flex;
align-items: center;
gap: 10px;
}

.disclaimer-title::before {
content: '⚠️';
font-size: 1.8rem;
}

.disclaimer-text {
font-size: 1.05rem;
color: #444;
line-height: 1.75;
margin: 0;
}

@media (max-width: 768px) {
.privacy-disclaimer {
padding: 25px 20px;
}

.disclaimer-title {
font-size: 1.3rem;
}

.disclaimer-text {
font-size: 1rem;
}
}

/* CTA Section */
.privacy-cta-section {
padding: 80px 0;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cta-content {
text-align: center;
max-width: 800px;
margin: 0 auto;
}

.cta-title {
font-size: 2.5rem;
color: rgb(25, 25, 112);
margin-bottom: 20px;
font-weight: 700;
}

.cta-text {
font-size: 1.15rem;
color: #555;
line-height: 1.8;
margin-bottom: 35px;
}

.cta-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

.cta-btn {
display: inline-block;
padding: 16px 35px;
border-radius: 30px;
font-size: 1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
text-decoration: none;
transition: all 0.3s ease;
}

.cta-btn.primary {
background: linear-gradient(135deg, rgb(70, 130, 180), rgb(25, 25, 112));
color: #ffffff;
box-shadow: 0 4px 15px rgba(70, 130, 180, 0.3);
}

.cta-btn.primary:hover {
transform: translateY(-3px);
box-shadow: 0 6px 25px rgba(70, 130, 180, 0.4);
}

.cta-btn.secondary {
background: #ffffff;
color: rgb(25, 25, 112);
border: 2px solid rgb(70, 130, 180);
}

.cta-btn.secondary:hover {
background: rgba(70, 130, 180, 0.1);
transform: translateY(-3px);
}

@media (max-width: 768px) {
.privacy-cta-section {
padding: 50px 0;
}

.cta-title {
font-size: 1.9rem;
}

.cta-text {
font-size: 1.05rem;
}

.cta-buttons {
flex-direction: column;
align-items: center;
}

.cta-btn {
width: 100%;
max-width: 300px;
}
}














/* Thank You Page Styles */

.thankyou-section {
min-height: calc(100vh - 70px);
display: flex;
align-items: center;
justify-content: center;
padding: 100px 20px 80px 20px;
margin-top: 70px;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
position: relative;
overflow: hidden;
}

.thankyou-section::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(70, 130, 180, 0.05) 1px, transparent 1px);
background-size: 50px 50px;
animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(50px, 50px);
}
}

.thankyou-container {
max-width: 800px;
margin: 0 auto;
position: relative;
z-index: 2;
}

.thankyou-content {
background: #ffffff;
padding: 60px 50px;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
text-align: center;
border: 3px solid rgba(70, 130, 180, 0.2);
}

/* Success Animation */
.success-animation {
margin-bottom: 35px;
}

.checkmark-circle {
width: 120px;
height: 120px;
margin: 0 auto;
border-radius: 50%;
background: linear-gradient(135deg, rgb(40, 167, 69) 0%, rgb(34, 139, 58) 100%);
display: flex;
align-items: center;
justify-content: center;
position: relative;
transform: scale(0);
transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.checkmark-circle.animate {
transform: scale(1);
}

.checkmark {
width: 50px;
height: 25px;
border-left: 6px solid #ffffff;
border-bottom: 6px solid #ffffff;
transform: rotate(-45deg) translateY(-5px);
opacity: 0;
transition: opacity 0.3s ease 0.5s;
}

.checkmark-circle.animate .checkmark {
opacity: 1;
}

/* Content */
.thankyou-title {
font-size: 2.8rem;
color: rgb(25, 25, 112);
margin-bottom: 20px;
font-weight: 700;
line-height: 1.2;
}

.thankyou-message {
font-size: 1.2rem;
color: #555;
line-height: 1.8;
margin-bottom: 45px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

/* Info Boxes */
.info-boxes {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
margin-bottom: 40px;
}

.info-box {
background: linear-gradient(135deg, rgba(70, 130, 180, 0.08) 0%, rgba(176, 196, 222, 0.12) 100%);
padding: 30px 25px;
border-radius: 12px;
border: 2px solid rgba(70, 130, 180, 0.2);
transition: all 0.3s ease;
}

.info-box:hover {
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(0,0,0,0.08);
border-color: rgb(70, 130, 180);
}

.info-icon {
font-size: 2.5rem;
margin-bottom: 15px;
display: block;
}

.info-title {
font-size: 1.3rem;
color: rgb(25, 25, 112);
margin: 0 0 10px 0;
font-weight: 700;
}

.info-text {
font-size: 1rem;
color: #666;
line-height: 1.6;
margin: 0;
}

/* Action Buttons */
.thankyou-actions {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
margin-top: 35px;
}

.btn-action {
display: inline-block;
padding: 16px 35px;
border-radius: 30px;
font-size: 1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
text-decoration: none;
transition: all 0.3s ease;
}

.btn-action.primary {
background: linear-gradient(135deg, rgb(70, 130, 180), rgb(25, 25, 112));
color: #ffffff;
box-shadow: 0 4px 15px rgba(70, 130, 180, 0.3);
}

.btn-action.primary:hover {
transform: translateY(-3px);
box-shadow: 0 6px 25px rgba(70, 130, 180, 0.4);
background: linear-gradient(135deg, rgb(25, 25, 112), rgb(70, 130, 180));
}

.btn-action.secondary {
background: #ffffff;
color: rgb(25, 25, 112);
border: 2px solid rgb(70, 130, 180);
}

.btn-action.secondary:hover {
background: rgba(70, 130, 180, 0.1);
transform: translateY(-3px);
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
.thankyou-section {
padding: 80px 20px 60px 20px;
}

.thankyou-content {
padding: 40px 30px;
}

.checkmark-circle {
width: 100px;
height: 100px;
}

.checkmark {
width: 40px;
height: 20px;
border-left: 5px solid #ffffff;
border-bottom: 5px solid #ffffff;
}

.thankyou-title {
font-size: 2rem;
}

.thankyou-message {
font-size: 1.05rem;
}

.info-boxes {
grid-template-columns: 1fr;
gap: 20px;
}

.info-icon {
font-size: 2rem;
}

.info-title {
font-size: 1.2rem;
}

.thankyou-actions {
flex-direction: column;
align-items: center;
}

.btn-action {
width: 100%;
max-width: 280px;
}
}

@media (max-width: 480px) {
.thankyou-content {
padding: 35px 20px;
}

.thankyou-title {
font-size: 1.7rem;
}

.thankyou-message {
font-size: 1rem;
margin-bottom: 35px;
}

.info-box {
padding: 25px 20px;
}
}













/* Thank You Page Styles */

.thankyou-section {
min-height: calc(100vh - 70px);
display: flex;
align-items: center;
justify-content: center;
padding: 100px 20px 80px 20px;
margin-top: 70px;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
position: relative;
overflow: hidden;
}

.thankyou-section::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(70, 130, 180, 0.05) 1px, transparent 1px);
background-size: 50px 50px;
animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(50px, 50px);
}
}

.thankyou-container {
max-width: 800px;
margin: 0 auto;
position: relative;
z-index: 2;
}

.thankyou-content {
background: #ffffff;
padding: 60px 50px;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
text-align: center;
border: 3px solid rgba(70, 130, 180, 0.2);
}

/* Success Animation */
.success-animation {
margin-bottom: 35px;
}

.checkmark-circle {
width: 120px;
height: 120px;
margin: 0 auto;
border-radius: 50%;
background: linear-gradient(135deg, rgb(40, 167, 69) 0%, rgb(34, 139, 58) 100%);
display: flex;
align-items: center;
justify-content: center;
position: relative;
transform: scale(0);
transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.checkmark-circle.animate {
transform: scale(1);
}

.checkmark {
width: 50px;
height: 25px;
border-left: 6px solid #ffffff;
border-bottom: 6px solid #ffffff;
transform: rotate(-45deg) translateY(-5px);
opacity: 0;
transition: opacity 0.3s ease 0.5s;
}

.checkmark-circle.animate .checkmark {
opacity: 1;
}

/* Content */
.thankyou-title {
font-size: 2.8rem;
color: rgb(25, 25, 112);
margin-bottom: 20px;
font-weight: 700;
line-height: 1.2;
}

.thankyou-message {
font-size: 1.2rem;
color: #555;
line-height: 1.8;
margin-bottom: 45px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

/* Info Boxes */
.info-boxes {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
margin-bottom: 40px;
}

.info-box {
background: linear-gradient(135deg, rgba(70, 130, 180, 0.08) 0%, rgba(176, 196, 222, 0.12) 100%);
padding: 30px 25px;
border-radius: 12px;
border: 2px solid rgba(70, 130, 180, 0.2);
transition: all 0.3s ease;
}

.info-box:hover {
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(0,0,0,0.08);
border-color: rgb(70, 130, 180);
}

.info-icon {
font-size: 2.5rem;
margin-bottom: 15px;
display: block;
}

.info-title {
font-size: 1.3rem;
color: rgb(25, 25, 112);
margin: 0 0 10px 0;
font-weight: 700;
}

.info-text {
font-size: 1rem;
color: #666;
line-height: 1.6;
margin: 0;
}

/* Action Buttons */
.thankyou-actions {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
margin-top: 35px;
}

.btn-action {
display: inline-block;
padding: 16px 35px;
border-radius: 30px;
font-size: 1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
text-decoration: none;
transition: all 0.3s ease;
}

.btn-action.primary {
background: linear-gradient(135deg, rgb(70, 130, 180), rgb(25, 25, 112));
color: #ffffff;
box-shadow: 0 4px 15px rgba(70, 130, 180, 0.3);
}

.btn-action.primary:hover {
transform: translateY(-3px);
box-shadow: 0 6px 25px rgba(70, 130, 180, 0.4);
background: linear-gradient(135deg, rgb(25, 25, 112), rgb(70, 130, 180));
}

.btn-action.secondary {
background: #ffffff;
color: rgb(25, 25, 112);
border: 2px solid rgb(70, 130, 180);
}

.btn-action.secondary:hover {
background: rgba(70, 130, 180, 0.1);
transform: translateY(-3px);
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
.thankyou-section {
padding: 80px 20px 60px 20px;
}

.thankyou-content {
padding: 40px 30px;
}

.checkmark-circle {
width: 100px;
height: 100px;
}

.checkmark {
width: 40px;
height: 20px;
border-left: 5px solid #ffffff;
border-bottom: 5px solid #ffffff;
}

.thankyou-title {
font-size: 2rem;
}

.thankyou-message {
font-size: 1.05rem;
}

.info-boxes {
grid-template-columns: 1fr;
gap: 20px;
}

.info-icon {
font-size: 2rem;
}

.info-title {
font-size: 1.2rem;
}

.thankyou-actions {
flex-direction: column;
align-items: center;
}

.btn-action {
width: 100%;
max-width: 280px;
}
}

@media (max-width: 480px) {
.thankyou-content {
padding: 35px 20px;
}

.thankyou-title {
font-size: 1.7rem;
}

.thankyou-message {
font-size: 1rem;
margin-bottom: 35px;
}

.info-box {
padding: 25px 20px;
}
}













/* Thank You Page Styles */

.thankyou-section {
min-height: calc(100vh - 70px);
display: flex;
align-items: center;
justify-content: center;
padding: 100px 20px 80px 20px;
margin-top: 70px;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
position: relative;
overflow: hidden;
}

.thankyou-section::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(70, 130, 180, 0.05) 1px, transparent 1px);
background-size: 50px 50px;
animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(50px, 50px);
}
}

.thankyou-container {
max-width: 800px;
margin: 0 auto;
position: relative;
z-index: 2;
}

.thankyou-content {
background: #ffffff;
padding: 60px 50px;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
text-align: center;
border: 3px solid rgba(70, 130, 180, 0.2);
}

/* Success Animation */
.success-animation {
margin-bottom: 35px;
}

.checkmark-circle {
width: 120px;
height: 120px;
margin: 0 auto;
border-radius: 50%;
background: linear-gradient(135deg, rgb(40, 167, 69) 0%, rgb(34, 139, 58) 100%);
display: flex;
align-items: center;
justify-content: center;
position: relative;
transform: scale(0);
transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.checkmark-circle.animate {
transform: scale(1);
}

.checkmark {
width: 50px;
height: 25px;
border-left: 6px solid #ffffff;
border-bottom: 6px solid #ffffff;
transform: rotate(-45deg) translateY(-5px);
opacity: 0;
transition: opacity 0.3s ease 0.5s;
}

.checkmark-circle.animate .checkmark {
opacity: 1;
}

/* Content */
.thankyou-title {
font-size: 2.8rem;
color: rgb(25, 25, 112);
margin-bottom: 20px;
font-weight: 700;
line-height: 1.2;
}

.thankyou-message {
font-size: 1.2rem;
color: #555;
line-height: 1.8;
margin-bottom: 45px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

/* Info Boxes */
.info-boxes {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
margin-bottom: 40px;
}

.info-box {
background: linear-gradient(135deg, rgba(70, 130, 180, 0.08) 0%, rgba(176, 196, 222, 0.12) 100%);
padding: 30px 25px;
border-radius: 12px;
border: 2px solid rgba(70, 130, 180, 0.2);
transition: all 0.3s ease;
}

.info-box:hover {
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(0,0,0,0.08);
border-color: rgb(70, 130, 180);
}

.info-icon {
font-size: 2.5rem;
margin-bottom: 15px;
display: block;
}

.info-title {
font-size: 1.3rem;
color: rgb(25, 25, 112);
margin: 0 0 10px 0;
font-weight: 700;
}

.info-text {
font-size: 1rem;
color: #666;
line-height: 1.6;
margin: 0;
}

/* Action Buttons */
.thankyou-actions {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
margin-top: 35px;
}

.btn-action {
display: inline-block;
padding: 16px 35px;
border-radius: 30px;
font-size: 1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
text-decoration: none;
transition: all 0.3s ease;
}

.btn-action.primary {
background: linear-gradient(135deg, rgb(70, 130, 180), rgb(25, 25, 112));
color: #ffffff;
box-shadow: 0 4px 15px rgba(70, 130, 180, 0.3);
}

.btn-action.primary:hover {
transform: translateY(-3px);
box-shadow: 0 6px 25px rgba(70, 130, 180, 0.4);
background: linear-gradient(135deg, rgb(25, 25, 112), rgb(70, 130, 180));
}

.btn-action.secondary {
background: #ffffff;
color: rgb(25, 25, 112);
border: 2px solid rgb(70, 130, 180);
}

.btn-action.secondary:hover {
background: rgba(70, 130, 180, 0.1);
transform: translateY(-3px);
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
.thankyou-section {
padding: 80px 20px 60px 20px;
}

.thankyou-content {
padding: 40px 30px;
}

.checkmark-circle {
width: 100px;
height: 100px;
}

.checkmark {
width: 40px;
height: 20px;
border-left: 5px solid #ffffff;
border-bottom: 5px solid #ffffff;
}

.thankyou-title {
font-size: 2rem;
}

.thankyou-message {
font-size: 1.05rem;
}

.info-boxes {
grid-template-columns: 1fr;
gap: 20px;
}

.info-icon {
font-size: 2rem;
}

.info-title {
font-size: 1.2rem;
}

.thankyou-actions {
flex-direction: column;
align-items: center;
}

.btn-action {
width: 100%;
max-width: 280px;
}
}

@media (max-width: 480px) {
.thankyou-content {
padding: 35px 20px;
}

.thankyou-title {
font-size: 1.7rem;
}

.thankyou-message {
font-size: 1rem;
margin-bottom: 35px;
}

.info-box {
padding: 25px 20px;
}
}












/* Cookie Consent Alert Styles */
/* Add this CSS to your main stylesheet or create a separate cookies.css file */

.cookie-consent-wrapper {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 9999;
background: linear-gradient(135deg, rgba(25, 25, 112, 0.98) 0%, rgba(70, 130, 180, 0.98) 100%);
backdrop-filter: blur(10px);
box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
transform: translateY(100%);
transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-consent-wrapper.show {
transform: translateY(0);
}

.cookie-consent-container {
max-width: 1200px;
margin: 0 auto;
padding: 25px 30px;
display: flex;
align-items: center;
gap: 25px;
}

.cookie-icon {
flex-shrink: 0;
font-size: 3rem;
animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}

.cookie-content {
flex: 1;
color: #ffffff;
}

.cookie-title {
font-size: 1.4rem;
font-weight: 700;
margin: 0 0 10px 0;
color: #ffffff;
}

.cookie-text {
font-size: 0.95rem;
line-height: 1.6;
margin: 0 0 10px 0;
color: rgba(255, 255, 255, 0.95);
}

.cookie-links {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}

.cookie-link {
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.9);
text-decoration: underline;
transition: color 0.3s ease;
}

.cookie-link:hover {
color: #ffffff;
text-decoration: none;
}

.cookie-separator {
color: rgba(255, 255, 255, 0.6);
font-size: 0.9rem;
}

.cookie-actions {
flex-shrink: 0;
display: flex;
gap: 12px;
flex-direction: column;
}

.cookie-btn {
padding: 12px 28px;
font-size: 0.95rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
border: none;
border-radius: 25px;
cursor: pointer;
transition: all 0.3s ease;
white-space: nowrap;
}

.cookie-btn.accept {
background: #ffffff;
color: rgb(25, 25, 112);
box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cookie-btn.accept:hover {
background: rgba(255, 255, 255, 0.9);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.cookie-btn.decline {
background: transparent;
color: #ffffff;
border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn.decline:hover {
background: rgba(255, 255, 255, 0.1);
border-color: #ffffff;
transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 968px) {
.cookie-consent-container {
flex-direction: column;
text-align: center;
padding: 25px 20px;
gap: 20px;
}

.cookie-icon {
font-size: 2.5rem;
}

.cookie-actions {
flex-direction: row;
width: 100%;
}

.cookie-btn {
flex: 1;
}
}

@media (max-width: 480px) {
.cookie-consent-container {
padding: 20px 15px;
}

.cookie-icon {
font-size: 2rem;
}

.cookie-title {
font-size: 1.2rem;
}

.cookie-text {
font-size: 0.9rem;
}

.cookie-actions {
flex-direction: column;
}

.cookie-btn {
width: 100%;
padding: 12px 20px;
font-size: 0.9rem;
}
}

/* Hide cookie consent when dismissed */
.cookie-consent-wrapper.hidden {
display: none;
}














/* Add to your CSS file */
.cookie-alert {
position: fixed;
bottom: 20px;
left: 20px;
right: 20px;
max-width: 600px;
margin: 0 auto;
background: rgb(25, 25, 112);
color: #fff;
padding: 20px 25px;
border-radius: 10px;
display: none;
align-items: center;
gap: 20px;
box-shadow: 0 4px 20px rgba(0,0,0,0.3);
z-index: 9999;
}

.cookie-alert.show {
display: flex;
animation: slideUp 0.4s ease;
}

@keyframes slideUp {
from { transform: translateY(100px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}

.cookie-msg {
flex: 1;
margin: 0;
font-size: 0.95rem;
line-height: 1.5;
}

.cookie-msg a {
color: #fff;
text-decoration: underline;
}

.cookie-ok {
background: #fff;
color: rgb(25, 25, 112);
border: none;
padding: 10px 25px;
border-radius: 20px;
font-weight: bold;
cursor: pointer;
white-space: nowrap;
}

.cookie-ok:hover {
background: rgba(255,255,255,0.9);
}

@media (max-width: 600px) {
.cookie-alert {
flex-direction: column;
text-align: center;
bottom: 10px;
left: 10px;
right: 10px;
}
.cookie-ok {
width: 100%;
}
}