* {
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #fff;
    color: #4A5E83;
}

.navbar {
    background-color: #1A2A44 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 1rem 2rem;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    color: #fff !important;
}

.navbar-brand .highlight {
    color: #FF6F61;
}

.nav-link {
    color: #DDE4ED !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FF6F61 !important;
}

.hero {
    background: linear-gradient(135deg, #F5F7FA 0%, #C3CFE2 100%);
    padding: 80px 0;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    color: #1A2A44;
}

.hero-content p {
    font-size: 20px;
    color: #4A5E83;
}

.hero-content a {
    color: #FF6F61;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-content a:hover {
    color: #E65A50;
}

.btn-primary.cta-button {
    background-color: #FF6F61;
    border-color: #FF6F61;
    padding: 14px 35px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary.cta-button:hover {
    background-color: #E65A50;
    border-color: #E65A50;
    transform: translateY(-2px);
}

.btn-outline-primary.screenshot-btn {
    border-color: #FF6F61;
    color: #FF6F61;
    padding: 14px 35px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary.screenshot-btn:hover {
    background-color: #FF6F61;
    color: #fff;
    border-color: #FF6F61;
    transform: translateY(-2px);
}

.button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.carousel {
    border-radius: 12px;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.carousel-inner img {
    object-fit: cover;
    height: 300px;
    border-radius: 12px;
}

.carousel-control-prev, .carousel-control-next {
    width: 15%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
}

.section {
    padding: 80px 0;
}

.section.bg-light {
    background-color: #F9FAFB;
}

.section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1A2A44;
}

.section p {
    font-size: 18px;
    color: #4A5E83;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card .icon {
    color: #FF6F61;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1A2A44;
}

.feature-card p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
}

footer {
    background-color: #1A2A44;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

footer p {
    color: #DDE4ED;
    font-size: 16px;
}

footer a {
    color: #FF6F61;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #E65A50;
}

/* Modal Styles */
.modal-dialog {
    max-width: 1200px !important;
}

.modal-content {
    background: linear-gradient(135deg, #F5F7FA 0%, #C3CFE2 100%);
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-height: 90vh !important;
}

.modal-header {
    background-color: #1A2A44;
    color: #DDE4ED;
    border-bottom: none;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 15px 20px;
}

.modal-title {
    font-weight: 600;
    font-size: 24px;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 0;
}

/* Screenshot Carousel Specific Styles */
#screenshotCarousel .carousel-inner {
    width: 100%;
}

#screenshotCarousel .carousel-inner .carousel-item img {
    height: auto !important;
    max-height: 1200px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    border-radius: 8px;
}

/* Contact Form Styles */
#contactForm .form-control {
    border-radius: 8px;
    border: 1px solid #4A5E83;
    box-shadow: none;
}

#contactForm .form-control:focus {
    border-color: #FF6F61;
    box-shadow: 0 0 5px rgba(255, 111, 97, 0.5);
}

.g-recaptcha {
    display: inline-block;
    margin-bottom: 15px;
}