body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.6;
}

.section-header {
    background: #1b6e8c;
    color: #ffffff;
    text-align: center;
    padding: 60px 15px;
}

.section-header h1 {
    margin: 0 0 10px;
    font-size: 2.5em;
}

.section-header p {
    margin: 0;
    font-size: 1.2em;
}

.section-header .header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-header .header-title img {
    height: 60px;
    width: auto;
}

.section-info {
    padding: 40px 0;
}

.section-info h2 {
    margin-top: 0;
    text-align: center;
    margin-bottom: 20px;
}

.section-info p {
    margin-bottom: 15px;
}

.section-info .btn {
    display: inline-block;
    background: #1b6e8c;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.section-info .btn:hover {
    background: #155a70;
}

/* Focus styles for accessibility */
:focus {
    outline: 3px dashed #000;
    outline-offset: 4px;
}

.section-custom {
    padding: 40px 0;
}

.section-custom .grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.section-custom .text {
    flex: 1 1 300px;
}

.section-custom .image {
    flex: 1 1 300px;
    text-align: center;
}

.section-custom img {
    max-width: 100%;
    height: auto;
}

.section-features {
    padding: 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
}

.feature .number {
    font-size: 2rem;
    color: #2196b6;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-wordpress {
    background: #f5f5f5;
    padding: 40px 0;
}

.section-wordpress h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}

.section-wordpress p {
    margin-bottom: 15px;
}

.section-contact {
    padding: 40px 0;
    text-align: center;
}

@media (max-width: 600px) {
    .section-header h1 {
        font-size: 2em;
    }
    .section-header .header-title img {
        height: 40px;
    }
}

/* Technology icons layout */
.tech-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.tech-icon {
    position: relative;
    width: 60px;
    height: 60px;
    overflow: hidden;
}

.tech-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tech-icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}
