/*
Theme Variables
*/
:root {
    --primary-color: #FA582F;
    --secondary-color: #FA2F97;
    --accent-color: #30FA74;
    --neutral-dark: #547A61;
    --neutral-medium: #7A5C54;
    --neutral-light: #7A5468;
}

/*
Global Styles
*/
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--neutral-medium);
    color: var(--neutral-dark);
    line-height: 1.8;
}

header {
    text-align: center;
    padding: 3rem 1rem;
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 3rem;
    margin: 0;
    margin-bottom: 1rem;
}

footer {
    background: var(--neutral-dark);
    color: white;
    text-align: center;
    padding: 2rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

/*
Button Styles
*/
.button {
    background: var(--neutral-light);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.2s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.button:hover {
    background: var(--secondary-color);
}

/*
Container Styles
*/
.container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/*
Section Styles
*/
section {
    margin-bottom: 4rem;
}

h1, h2, h3 {
    color: var(--accent-color);
}

blockquote {
    font-style: italic;
    color: var(--neutral-dark);
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/*
Hero Section Styles
*/
.hero {
    text-align: center;
    padding: 5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    margin-bottom: 4rem;
}

.hero h1 {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Adjusted Navigation Bar Styles */
.nav-bar {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--neutral-dark);
    padding: 1rem 0;
    margin: 0;
    width: 100%;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-bar li {
    margin: 0 1.5rem;
}

.nav-bar a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav-bar a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.nav-bar a:active {
    color: var(--secondary-color);
}

/* Features Section */
#features {
    text-align: center;
    margin: 4rem 0;
}

.feature-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Testimonials Section */
#testimonials {
    background: var(--neutral-light);
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 4rem 0;
}

blockquote {
    font-style: italic;
    color: var(--neutral-dark);
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Call-to-Action Section */
#cta {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    margin: 4rem 0;
}

#cta p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

#cta .button {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

#cta .button:hover {
    background: var(--secondary-color);
}

/* Contact Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form label {
    font-weight: bold;
    color: var(--neutral-dark);
}

form input[type="text"],
form input[type="email"] {
    padding: 0.8rem;
    border: 1px solid var(--neutral-medium);
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
}

form textarea {
    padding: 1rem;
    border: 1px solid var(--neutral-medium);
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    height: 150px;
    resize: vertical;
}

form button {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background: var(--secondary-color);
}

/* Global Paragraph Styles */
p {
    color: white;
}