/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Typography Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif; /* Modern and clean font choice */
    line-height: 1.6;
    color: #333;
    background-color: #f7f7f7; /* Neutral background color for a less stark contrast */
}

/* Container */
.container {
    max-width: 1200px; /* Maximum width for large screens */
    margin: auto;
    padding: 0 20px; /* Padding for content breathing room */
    overflow: hidden;
}

/* Header */
#site-header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 3px solid #0056b3; /* Consistent blue theme */
}

.logo {
    color: #0056b3;
    font-size: 2.5em;
}

/* Navigation */
.main-nav {
    text-align: right;
    font-size: 1.1em; /* Slightly larger font for navigation */
}

.nav-list {
    list-style: none;
}

.nav-item {
    display: inline-block; /* Better control for spacing and alignment */
    margin-left: 20px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 5px 10px; /* Padding for a larger clickable area */
}

.nav-link:hover, .nav-link:focus {
    color: #0056b3; /* Interactive states for better user experience */
    background-color: #e6e6e6; /* Subtle background on hover/focus for feedback */
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(to right, #0056b3, #0096d6); /* Engaging gradient background */
    color: #fff;
    padding: 80px 0; /* More vertical space for a grander presentation */
    text-align: center;
}

.hero-title {
    font-size: 3em; /* Larger title for impact */
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.3em; /* Clear and legible description size */
    margin-bottom: 40px;
}

.btn-primary {
    background-color: #f00;
    color: #fff;
    padding: 12px 35px; /* Comfortable button size */
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for visual feedback */
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #fff;
    color: #f00;
    border: 2px solid #f00; /* Maintain button dimensions during state changes */
}

/* Features and Benefits Sections */
.features-section,
.benefits-section {
    padding: 60px 0; /* Uniform padding for visual rhythm */
    background-color: #f9f9f9; /* Soft contrast for the background */
}

.section-title {
    color: #0056b3; /* Blue theme for titles */
    text-align: center;
    margin-bottom: 40px; /* Space below titles */
    font-size: 2em; /* Prominent section titles */
}

.features-list,
.benefits-list {
    list-style: none;
    padding: 0; /* Alignment fix */
}

.feature-item,
.benefit-item {
    background-color: #fff;
    margin: 15px 0; /* Space between items */
    padding: 20px; /* Internal spacing */
    border-left: 5px solid #0096d6; /* Visual accent */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle depth with shadow */
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0; /* Consistent section padding */
}

.pricing-plans {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Responsive wrapping for smaller screens */
}

.plan {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 30px; /* Ample internal space */
    width: calc(33.333% - 40px); /* Responsive width with margin consideration */
    margin: 20px; /* External spacing */
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Shadow for depth */
}

.plan-title {
    color: #f00;
    margin-bottom: 15px; /* Title separation */
}

.plan-price {
    font-size: 2.5em; /* Emphasized price size */
    margin-bottom: 15px;
}

.plan-description {
    font-size: 1.1em; /* Readable description size */
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #eef2f7; /* Gentle background for testimonials */
    padding: 60px 0; /* Vertical padding for space */
}

.testimonial {
    background-color: #fff;
    padding: 25px; /* Padding for content */
    margin-bottom: 30px; /* Separation between testimonials */
    border-left: 5px solid #0096d6; /* Accent color for consistency */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Shadow for depth */
}

.testimonial-text {
    font-style: italic;
    color: #666;
}

.testimonial-author {
    text-align: right;
    color: #333;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #0056b3; /* Footer color matching the theme */
    color: #fff;
    text-align: center;
    padding: 25px 0; /* Padding for footer height */
}

.footer-text {
    margin: 0;
}
