body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.top-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ff69b4;
}

/* Banner Styles */
.ulockd-home-slider {
    background-image: url('../images/slider-01.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.ulockd-home-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.lbox-caption {
    position: relative;
    z-index: 1;
}

.lbox-caption h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.lbox-caption h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.lbox-caption p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #ff69b4;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff1493;
    color: #fff;
}

/* Section Styles */
.about-box,
.features-box,
.pricing-box,
.contact-box {
    padding: 5rem 0;
}

.title-box {
    text-align: center;
    margin-bottom: 3rem;
}

.title-box h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

/* Features Styles */
.features-list {
    list-style-type: none;
    padding-left: 0;
}

.features-list li {
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff69b4;
}

/* Pricing Styles */
.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid #ff69b4;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff69b4;
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.pricing-card li {
    margin-bottom: 0.5rem;
}

/* Contact Styles */
.contact-block {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Footer Styles */
.footer-box {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .lbox-caption h1 {
        font-size: 2.5rem;
    }

    .lbox-caption h2 {
        font-size: 1.5rem;
    }

    .lbox-caption p {
        font-size: 1rem;
    }
}