/* General Body Styles */
html {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header and Navigation */
.navbar {
    background: #fff;
    color: #333;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li {
    padding: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #007BFF;
}

/* Hamburger Menu Icon (Hidden on Desktop) */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    background: #333;
}


/* Hero Section */
.hero {
    background-color: #333; 
    background-image: url('../images/pattern.png'); 
    background-repeat: repeat;
    color: #fff;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box; 
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    background: #007BFF;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #0056b3;
}

/* Info Section */
.info-section {
    padding: 4rem 0;
    text-align: center;
}

.info-cards {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    gap: 20px;
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex: 1;
}

.card-img {
    max-width: 250px;
    margin-bottom: 1.5rem;
}


/* Page Header */
.page-header {
    background-color: #f4f4f4;
    padding: 2rem 0;
    text-align: center;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
}


/* --- Form Styles --- */
.contact-form {
    margin-top: 2rem;
    max-width: 700px; 
    margin-left: auto;
    margin-right: auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box; 
}

.contact-form .btn {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.form-group fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.form-group .form-label {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    margin: 0 0.75rem 0 0;
    width: auto; 
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0; 
    font-weight: normal;
}


/* --- Pricing Page Styles --- */
.pricing-section {
    padding: 4rem 0;
}

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

.pricing-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pricing-header {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.pricing-header p {
    color: #666;
    margin-top: 0.5rem;
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007BFF;
    margin: 0;
}

.pricing-term {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
}

.price-breakdown {
    margin: 1rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.price-main {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007BFF;
    margin: 0;
}

.price-main .price-term {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
}

.price-sub {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

.pricing-body {
    padding-top: 1.5rem;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-body li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-body li::before {
    content: '\2714'; /* Universal CSS code for a checkmark */
    color: #007BFF;
    position: absolute;
    left: 0;
}

.pricing-card .btn {
    margin-top: 1.5rem;
}

/* Footer */
.footer {
    background-color: #333; /* Use specific property for fallback */
    background-image: url('../images/pattern.png'); /* Add the pattern */
    background-repeat: repeat; /* Add the repeat rule */
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}


/* --- Responsive Media Queries --- */
@media(max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr; /* Stacks to 1 column on tablets */
    }
}

@media(max-width: 768px) {
    .hero {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 82px;
        left: 0;
        background: #fff;
        border-bottom: 1px solid #ddd;
    }

    .nav-links li {
        padding: 15px 0;
    }
    
    .info-cards, .feature-list {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}