.webdev-section {
    padding-top: 400px;
    background: linear-gradient(to bottom right, #f9fafb, #ffffff);
}

@media (max-width: 768px) {
    .webdev-section {
        padding-top: 180px;
    }
}

.webdev-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1300px;
    margin: auto;
    align-items: flex-start;
    gap: 3rem;
}

.webdev-left {
    z-index: 10;
    flex: 1 1 600px;
}

.webdev-right {
    z-index: 10;
    flex: 1 1 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.webdev-right img,
.services-image-highlight {
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.webdev-tag {
    color: #6b7280;
    letter-spacing: 0.18em;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.9rem;
}

.webdev-title {
    font-family: 'Oswald';
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-top: 0.5rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.webdev-sub {
    display: block;
    font-weight: 500;
    font-size: 1.2rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.webdev-intro {
    font-size: 1.05rem;
    color: #374151;
    margin: 1.5rem 0 2.5rem;
    max-width: 600px;
}

.webdev-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.webdev-point {
    text-align: left;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
}

.webdev-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.webdev-point img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.webdev-point p {
    margin-top: 0.2rem;
    color: #4b5563;
    font-size: 0.95rem;
}

.webdev-btn {
    margin-top: 3rem;
    display: inline-block;
    background-color: #07203a;
    color: white;
    padding: 0.9rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.webdev-btn:hover {
    background-color: #05182c;
}

@media (max-width: 980px) {
    .webdev-wrapper {
        flex-direction: column;
    }

    .webdev-point {
        text-align: left;
    }

    .webdev-title {
        font-size: 2rem;
    }

    .webdev-right {
        display: none;
        order: -1;
    }
}