.about {
    display: grid;
    grid-template-columns: 50% 10% 40%;
    height: 450px;
    align-items: center;

    .info {
        text-align: left;

        h2 {
            color: #e0a400;
        }
    }

    .feature {
        display: flex;
        justify-content: end;
        align-items: end;
        margin: 0 0 0 auto;

        border-radius: 20px;

        img {
            border-radius: 10px;
            width: 100%;
            object-fit: cover;
        }
    }
}

/* Tablet View */
@media (max-width: 992px) {
    .about {
        grid-template-columns: 45% 10% 45%;
        height: 400px;
        gap: 0;

        .info {
            h2 {
                font-size: 1.8rem;
            }

            p {
                font-size: 0.9rem;
            }
        }

        .feature {
            img {
                height: 300px;
            }
        }
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .about {
        grid-template-columns: 1fr;
        height: auto;
        gap: 30px;
        padding: 40px 0;

        .info {
            text-align: center;
            order: 2;

            h2 {
                font-size: 1.5rem;
                margin-bottom: 15px;
            }

            p {
                font-size: 0.9rem;
                line-height: 1.5;
                margin-bottom: 20px;
            }
        }

        .feature {
            order: 1;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
            max-width: 350px;
            width: 100%;

            img {
                height: 250px;
                width: 100%;
            }
        }
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .about {
        padding: 30px 0;
        gap: 20px;

        .info {
            h2 {
                font-size: 1.3rem;
            }

            p {
                font-size: 0.85rem;
            }
        }

        .feature {
            max-width: 280px;
            border: 3px solid #e0a400;

            img {
                height: 200px;
            }
        }
    }
}
.services-items {
    position: relative;
    top: -100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
    .item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        box-sizing: border-box;
        background: #e0a400;
        border: 5px solid #f4c91b;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 9px;
        text-align: center;
        color: #fff;
        h4 {
            color: #fff;
        }
    }
}

@media (max-width: 768px) {
    .services-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Pricing Section Styles */
.pricing-section {
    padding: 80px 0;
}

.pricing-title {
    font-size: 2.5rem;
    color: #e0a400;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #e0a400;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e0a400;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.pricing-header {
    padding: 30px 25px;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.pricing-desc {
    font-size: 0.95rem;
    color: #888;
    margin: 0;
}

.pricing-body {
    padding: 35px 25px;
    flex-grow: 1;
}

.price {
    display: none;
}

.currency {
    display: none;
}

.amount {
    display: none;
}

.period {
    display: none;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    padding: 12px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
}

.features li:last-child {
    border-bottom: none;
}

.features li:before {
    content: attr(data-check);
    margin-right: 10px;
    color: #e0a400;
    font-weight: bold;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 15px;
    margin-top: auto;
    background: #f0f0f0;
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: #e0a400;
    color: white;
}

.featured-btn {
    background: #e0a400;
    color: white;
}

.featured-btn:hover {
    background: #c48a00;
}

/* Tablet View */
@media (max-width: 992px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricing-card.featured {
        transform: scale(1);
        grid-column: 1 / -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

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

    .amount {
        font-size: 2.5rem;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        margin: 0;
    }

    .pricing-card.featured {
        transform: scale(1);
        border-color: #e0a400;
    }

    .pricing-title {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .pricing-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .pricing-header {
        padding: 25px 20px;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
    }

    .pricing-body {
        padding: 25px 20px;
    }

    .amount {
        font-size: 2rem;
    }

    .features li {
        font-size: 0.9rem;
        padding: 10px 0;
    }

    .pricing-btn {
        padding: 12px;
        font-size: 0.95rem;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .pricing-section {
        padding: 40px 0;
    }

    .pricing-title {
        font-size: 1.5rem;
    }

    .pricing-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .pricing-header {
        padding: 20px 15px;
    }

    .pricing-header h3 {
        font-size: 1.3rem;
    }

    .pricing-body {
        padding: 20px 15px;
    }

    .amount {
        font-size: 1.8rem;
    }

    .currency {
        font-size: 1.2rem;
    }

    .features li {
        font-size: 0.85rem;
        padding: 8px 0;
    }

    .pricing-btn {
        padding: 10px;
        font-size: 0.9rem;
    }
}
