:root {
    --bs-primary: #0069be;
    --white: #fff;
}

.btn-primary {
    --bs-btn-bg: var(--bs-primary);
}
.btn-primary:hover {
    --bs-btn-hover-bg: var(--bs-primary);
}

.btn-warning {
    --bs-btn-color: var(--white);
}

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

.btn-outline-primary:hover {
    --bs-btn-hover-bg: var(--bs-primary);
}

.btn-outline-warning:hover {
    color: var(--white);
}

body {
    font-family: Helvetica, Arial, sans-serif;
    color: #555;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--bs-primary);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--bs-primary);
    width: 40%;
}
.navbar .nav-link {
    color: var(--bs-primary);
    font-weight: 500;
}

.hero {
    padding: 8rem 0;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--bs-primary);
}
.hero p {
    font-size: 1.25rem;
    color: var(--bs-primary);
}
.section-title {
    color: var(--bs-primary);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card {
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.service-card img {
    max-width: 80px;
    margin-bottom: 1.5rem;
}

.how-it-works .timeline {
    position: relative;
    padding: 2rem 0;
    list-style: none;
}
.how-it-works .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: #e9ecef;
}
.how-it-works .timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 40px;
}
.how-it-works .timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 50px;
    text-align: right;
}
.how-it-works .timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 50px;
    text-align: left;
}
.how-it-works .timeline-dot {
    content: '';
    position: absolute;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid var(--bs-primary);
}
.how-it-works .timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}
.how-it-works .timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}
.timeline-step {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f7a040;
}

.pricing-card {
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.pricing-card .card-header {
    background-color: var(--bs-primary);
    color: var(--white);
    padding: 1.5rem;
}
.pricing-card h4 {
    color: var(--white);
}
.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--bs-primary);
}

.testimonial-card {
    border: 0;
    border-radius: 1rem;
    background-color: #f8f9fa;
}

.testimonial-card .bi {
    font-size: 2rem;
}

.founder-img {
    max-width: 250px;
}

.contact-form-wrapper {
    background-color: var(--bs-primary);
    color: var(--white);
    padding: 4rem;
}
.contact-form-wrapper h2 {
    color: var(--white);
}
.contact-form-wrapper .form-control {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    color: var(--white);
}
.contact-form-wrapper a {
    color: var(--white);
}
.contact-form-wrapper .form-control:focus {
    box-shadow: none;
    border-color: var(--white);
}
.contact-form-wrapper .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    background-color: var(--bs-primary);
    color: var(--white);
}
.footer-bottom .social-icons a {
    color: var(--white);
    font-size: 1.2rem;
    margin-left: 1rem;
    transition: color 0.3s;
}
