/* Global Styles */
:root {
    --primary-color: #0052cc;
    --secondary-color: #0066ff;
    --accent-color: #00b8d9;
    --dark-color: #172b4d;
    --light-color: #f4f5f7;
    --text-color: #253858;
    --light-text: #5e6c84;
    --success-color: #36b37e;
    --warning-color: #ffab00;
    --danger-color: #ff5630;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* Image and Picture elements */
picture {
    display: inline-block;
    max-width: 100%;
}

picture img {
    display: block;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 6rem 0;
}

/* Feature Cards */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 82, 204, 0.1);
    color: var(--primary-color);
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Testimonials */
.testimonial {
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.7;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Footer */
footer {
    background-color: var(--dark-color);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Investment Tips Page */
.tip-card {
    border-left: 4px solid var(--primary-color);
    background-color: var(--light-color);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 0 4px 4px 0;
}

.tip-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Privacy Policy and Terms Pages */
.legal-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.disclaimer {
    background-color: var(--light-color);
    border-left: 4px solid var(--warning-color);
    padding: 15px;
    margin: 20px 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 768px) {
    h1.display-4 {
        font-size: 2.5rem;
    }
} 