 .erickshaw-section {
    padding: 40px 0;
}

.product-image-container {
    position: relative;
    text-align: center;
    padding: 20px;
}

.erickshaw-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lightning-icon {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #00bfff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    z-index: 10;
}

footer {
    background-color: #0c4e89;
    color: #fff;
    margin-top: auto;
}

footer a {
    color: #ffc107;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.product-title {
    color: #0066cc;
    font-weight: 700;
    font-size: 2.5rem;
    margin: 20px 0 10px;
    text-align: center;
}

.voltage-specs {
    color: #dc3545;
    font-weight: 600;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 20px;
}

.battery-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 20px auto;
    display: block;
}

.certification-badge {
    width: 120px;
    height: 120px;
    margin: 20px auto;
    display: block;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

.features-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.highlight {
    color: #0066cc;
    font-weight: 600;
}

.content-wrapper {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .product-title {
        font-size: 2rem;
    }

    .voltage-specs {
        font-size: 1.1rem;
    }

    .lightning-icon {
        width: 60px;
        height: 60px;
    }

    .intro-text, .features-text {
        font-size: 1rem;
    }
}