.service-section h2,
.features-section h2,
.innovation-section h2 {
    color: green;
    font-size: 28px;
    font-weight: 600;
    font-family: "Oswald", serif;
    margin-bottom: 20px;
}

.service-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    margin-bottom: 25px;
    padding-left: 25px;
    position: relative;
}

.features-list li:before {
    content: "•";
    color: #28a745;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    color: #333;
}

.rotating-image-container {
    padding: 20px;
    perspective: 1000px;
}

.rotating-image {
    width: 100%;
    border-radius: 10px;
    height: 350px;
    transition: transform 0.5s ease;
}

.rotating-image:hover {
    transform: rotateY(10deg);
}

@media (max-width: 768px) {
    .service-section h2,
    .features-section h2,
    .innovation-section h2 {
        font-size: 28px;
    }

    .service-text {
        font-size: 16px;
    }

    .feature-title {
        font-size: 18px;
    }
    
    .rotating-image-container {
        margin-top: 10px;
    }
}