body {
    background-color: #0f0f0f;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.page {
    display: none;
}
.active {
    display: block;
}
.honowa-blue {
    color: #29ABE2;
}
.honowa-bg-blue {
    background-color: #29ABE2;
}
.nav-item {
    position: relative;
}
.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #29ABE2;
    transition: width 0.3s;
}
.nav-item:hover::after, .nav-active::after {
    width: 100%;
}
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #29ABE2;
}
.stat-card {
    background-color: rgba(41, 171, 226, 0.1);
    border-left: 4px solid #29ABE2;
}
.service-card {
    background-color: rgba(20, 20, 20, 0.8);
    border: 1px solid #333;
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(41, 171, 226, 0.2);
    border-color: #29ABE2;
}
.service-icon {
    background-color: rgba(41, 171, 226, 0.1);
    color: #29ABE2;
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 15px;
}
.testimonial-card {
    background-color: rgba(20, 20, 20, 0.8);
    border-left: 4px solid #29ABE2;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: 10px;
    color: rgba(41, 171, 226, 0.2);
}
.client-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}
.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.portfolio-item {
    overflow: hidden;
    position: relative;
}
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(41, 171, 226, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}
.value-card {
    border-left: 3px solid #29ABE2;
    background-color: rgba(20, 20, 20, 0.8);
}
.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #29ABE2;
}
.timeline-item::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #29ABE2;
}
.blog-card {
    background-color: rgba(20, 20, 20, 0.8);
    border: 1px solid #333;
    transition: all 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(41, 171, 226, 0.2);
    border-color: #29ABE2;
}
.contact-info-card {
    background-color: rgba(20, 20, 20, 0.8);
    border-left: 3px solid #29ABE2;
}
.input-field {
    background-color: rgba(30, 30, 30, 0.8);
    border: 1px solid #333;
    color: white;
    transition: all 0.3s ease;
}
.input-field:focus {
    border-color: #29ABE2;
    box-shadow: 0 0 0 2px rgba(41, 171, 226, 0.2);
}
.btn-primary {
    background-color: #29ABE2;
    color: white;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #218bb8;
    transform: translateY(-2px);
}
.btn-outline {
    border: 2px solid #29ABE2;
    color: #29ABE2;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background-color: #29ABE2;
    color: white;
}
.feature-card {
    border: 1px solid #333;
    background-color: rgba(20, 20, 20, 0.8);
    transition: all 0.3s ease;
}
.feature-card:hover {
    border-color: #29ABE2;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(41, 171, 226, 0.2);
}
.feature-icon {
    color: #29ABE2;
    font-size: 2rem;
    margin-bottom: 15px;
}
.faq-card {
    border: 1px solid #333;
    background-color: rgba(20, 20, 20, 0.8);
    margin-bottom: 15px;
}
.faq-question {
    cursor: pointer;
    font-weight: 600;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    padding: 0 15px 15px 15px;
    display: none;
}
.faq-active .faq-answer {
    display: block;
}
.faq-active .faq-icon-plus {
    display: none;
}
.faq-active .faq-icon-minus {
    display: inline;
}
.faq-icon-minus {
    display: none;
}
footer {
    background-color: #080808;
    border-top: 1px solid #222;
}

