/* Root variables for colors from index.html */
:root {
    --header-bg: #2c3e50; /* Dark blue-gray for header/footer */
    --white: #ffffff; /* White for text */
    --hero-bg: #f4f4f4; /* Light gray for hero */
    --button-bg: #3498db; /* Blue for buttons */
    --button-hover: #2980b9; /* Darker blue for button hover */
    --text: #333333; /* Dark gray for body text */
    --accent: #cccccc; /* Light gray for borders/highlights, adjusted from #C0C0C0 */
    --body-bg: #ffffff; /* White for body background */
}

/* Global styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--body-bg);
    color: var(--text);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3 {
    color: var(--text);
}

h1 { font-size: 2.5em; } /* From index.html */
h2 { font-size: 2em; }
h3 { font-size: 1.5em; } /* From index.html */

/* Navbar */
.navbar {
    background-color: var(--header-bg);
    padding: 10px 20px; /* From index.html */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar-logo {
    max-height: 50px;
}

.navbar-links {
    display: flex;
    gap: 15px; /* From index.html (margin: 0 15px) */
    align-items: center;
}

.navbar-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
}

.navbar-links a:hover {
    text-decoration: underline; /* From index.html */
}

/* Hero section */
.hero {
    background-color: var(--hero-bg); /* From index.html */
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px; /* From index.html */
}

.hero h1 {
    font-size: 2.5em; /* From index.html */
    margin-bottom: 20px; /* From index.html */
}

.hero p {
    font-size: 1.2em; /* From index.html */
    margin-bottom: 30px; /* From index.html */
}

/* Buttons */
.button {
    background-color: var(--button-bg);
    color: var(--white);
    padding: 10px 20px; /* From index.html */
    border: none;
    border-radius: 5px; /* From index.html */
    font-size: 1.2rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.button:hover {
    background-color: var(--button-hover); /* From index.html */
}

/* Button container */
.button-container {
    display: flex;
    gap: 20px; /* Adjusted from index.html (margin: 0 10px) */
    justify-content: center;
    margin-top: 20px;
}

/* Content sections */
.section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Features section */
.features {
    display: flex;
    justify-content: center;
    gap: 20px; /* From index.html */
    padding: 50px 20px; /* From index.html */
    flex-wrap: wrap;
}

.feature {
    text-align: center;
    max-width: 300px; /* From index.html */
    min-width: 250px;
    padding: 20px;
}

.container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
      display: flex;
      flex-direction: column;
}

.contact-form label {
      margin: 10px 0 5px;
      font-weight: bold;
}

.contact-form input, .contact-form textarea {
      padding: 10px;
      margin-bottom: 10px;
      border: 2px solid #ddd;
      border-radius: 4px;
      font-size: Arial, sans-serif;
}

.contact-form textarea {
      height: 150px;
      resize: vertical;
}

.contact-form button {
      padding: 10px 20px;
      background-color:  #333;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 16px;
      width: fit-content;
}

.contact-form button:hover {
      background-color: #555;
}

.contact-details {
      margin-top: 20px;
}

ul {
      margin: 10px 0;
      padding-left: 5px;
}

ul li {
      margin-bottom: 10px;
}

ol {
      margin: 10px 0;
      padding-left: 5px;
}

ol li {
      margin-bottom: 10px;
}

.cta-button {
      display: inline-block;
      padding: 10px 20px;
      background-color: #333;
      color: white;
      text-decoration: none;
      border-radius: 4px;
      margin-top: 20px;
      font-size: 16px;
}

.cta-button:hover {
      background-color: #555;
}
    
/* Footer */
.footer {
    background-color: var(--header-bg);
    color: var(--white);
    padding: 20px; /* From index.html */
    text-align: center;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    margin: 0 10px; /* From index.html */
}

.footer a:hover {
    text-decoration: underline; /* From index.html */
}

/* Pricing section */
.pricing-section {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-card th, .pricing-card td {
    padding: 15px;
    border: 1px solid var(--accent);
    text-align: center;
    width: 50%;
}

.pricing-card th {
    background-color: var(--header-bg);
    color: var(--white);
    font-size: 1.2rem;
}

.pricing-card td {
    font-size: 1rem;
}

.pricing-card tr:nth-child(even) {
    background-color: #f4f4f4; /* Adjusted to hero-bg */
}

/* Responsive design */
@media (max-width: 768px) {
    .hero {
        min-height: 150px;
    }
    .hero h1 {
        font-size: 2em;
    }
    .hero p {
        font-size: 1em;
    }
    .navbar {
        flex-direction: column;
        gap: 10px;
    }
    .navbar-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .features {
        flex-direction: column;
        align-items: center;
    }
    .pricing-section th, .pricing-card td {
        padding: 10px;
        font-size: 0.9rem;
        width: auto;
    }
}

/* Basic styling for the textarea to make it scrollable and readable */
    textarea {
        width: 75%;
        height: 500px;
        resize: none;
        border: 1px solid #ccc;
        padding: 10px;
        font-family: Arial, sans-serif;
        font-size: 14px;
        line-height: 1.5;
        background-color: #f9f9f9;
}
    .pdf-container {
            width: 100%;
            height: 600px;
            border: 1px solid #ccc;
}