/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&family=Montserrat:wght@400;700&display=swap');

/* Basic Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7; /* Adjusted for better readability */
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* A very light gray, almost white */
    color: #343a40; /* Darker text for better contrast */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure footer sticks to bottom */
    font-size: 16px; /* Base font size for better accessibility */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px; /* Increased padding */
}

/* Top Bar Styling */
.top-bar {
    background-color: #268fff; /* Contrasting bold blue */
    color: #ffffff;
    padding: 10px 0; /* Slim vertical padding */
    font-size: 0.9em;
}

.top-bar .container {
    display: flex;
    justify-content: space-between; /* Align text left, button right */
    align-items: center;
    padding: 0 20px; /* Adjust container padding for the top bar */
}

.top-bar-text a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.top-bar-text a:hover {
    color: #e9ecef;
    text-decoration: underline;
}

.top-bar-button {
    background-color: #28a745; /* Vibrant green for CTA */
    color: white;
    padding: 8px 15px;
    border-radius: 20px; /* Rounded pill-style button */
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.top-bar-button:hover {
    background-color: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

main {
    flex: 1; /* Pushes footer to bottom */
}

/* Header Styling */
header {
    background-color: #ffffff;
    padding: 20px 0; /* Increased top/bottom padding for more breathing room */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* More prominent, modern shadow */
    text-align: center;
    position: relative; /* Changed to relative for z-index to work properly */
    z-index: 100; /* Ensure header is above other content */
    border-bottom: none; /* Removed bottom border */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px; /* Adjusted padding */
    width: 100%;
}

.header-nav-container {
    width: 100%;
    display: flex; /* Use flexbox for navigation containers */
    flex-direction: column; /* Stack primary and secondary nav vertically */
}

.secondary-nav {
    background-color: #212529; /* Darker, more prominent secondary nav */
    padding: 10px 0; /* Slightly increased padding */
    border-bottom: none;
    box-shadow: none;
    width: 100%;
}

.secondary-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: transparent; /* Changed to transparent as parent handles background */
    padding: 0; /* Removed padding */
}

.secondary-nav ul li {
    margin: 0 15px; /* Adjusted spacing */
}

.secondary-nav ul li a {
    color: #e9ecef; /* Lighter white for secondary nav links */
    font-weight: 400; /* Less bold */
    transition: color 0.3s ease;
    padding: 6px 0; /* Adjusted padding */
    border-radius: 0; /* Removed border radius */
    font-size: 0.9em; /* Slightly smaller font */
}

.secondary-nav ul li a:hover {
    color: #cccccc; /* Subtle gray on hover */
    text-decoration: none; /* Removed underline */
    transform: none; /* Removed transform effect */
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em; /* Larger for header h1 */
    color: #004085; /* Professional blue for prominence */
    margin-top: 0;
    margin-bottom: 8px; /* Added small bottom margin */
    padding-bottom: 0;
    border-bottom: none;
}

.header-tagline {
    font-size: 0.9em; /* Larger tagline */
    color: #6c757d; /* Softer gray */
    margin-top: 0; /* Adjusted to sit closer to h1 */
    margin-bottom: 0; /* Removed bottom margin as header-top handles spacing */
}

/* Styling for new hero content */
.hero-section {
    background-color: #004085; /* Bold background color for hero section */
    padding: 80px 0; /* More padding for a larger banner */
    margin-bottom: 60px; /* Increased margin */
    color: #ffffff; /* White text for contrast */
}

.hero-content {
    text-align: center;
    padding: 0; /* Padding is now on .hero-section */
    background-color: transparent; /* Background on section */
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
}

.hero-content h1 {
    font-size: 3.8em; /* Larger font size for main heading */
    color: #ffffff; /* White color for contrast */
    margin-bottom: 25px; /* Increased margin */
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; /* Extra bold */
}

.hero-content .tagline {
    font-size: 1.4em; /* Larger subheading */
    color: #e9ecef; /* Lighter white for subheading */
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto 30px auto; /* Centered with bottom margin */
}

.hero-section .call-to-action-hero {
    background-color: #28a745; /* Vibrant green for CTA */
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 35px; /* Rounded pill-style button */
    font-weight: 700;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-section .call-to-action-hero:hover {
    background-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Why Choose Us Section */
.hero-section ul {
    list-style: none;
    padding: 0;
    margin-top: 50px; /* Increased margin */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px; /* Increased gap */
}

.hero-section ul li {
    background-color: #ffffff;
    padding: 25px 30px; /* Increased padding */
    border-radius: 10px; /* Consistent rounded corners */
    box-shadow: 0 6px 20px rgba(0,0,0,0.1); /* More prominent shadow */
    font-weight: 500;
    color: #343a40;
    flex: 1 1 auto; /* Allow items to grow and shrink */
    min-width: 300px; /* Minimum width for flex items */
    max-width: 380px;
    text-align: left;
}

header p {
    display: none;
}

.primary-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #2488f4; /* Professional blue for primary nav */
    padding: 15px 0; /* Adjusted padding */
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Subtle shadow */
}

.primary-nav ul li {
    margin: 0 20px; /* Slightly wider spacing */
}

.primary-nav ul li a {
    color: #ffffff; /* White color */
    font-weight: 600;
    transition: color 0.3s ease, background-color 0.3s ease; /* Use background-color for hover */
    padding: 10px 15px; /* Adjusted padding */
    border-radius: 8px; /* Slightly more rounded */
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1.05em; /* Adjusted font size */
}

.primary-nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.15); /* Slightly stronger white overlay */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.primary-nav ul li a:hover::before {
    transform: scaleX(1);
}

.primary-nav ul li a:hover {
    color: #ffffff; /* Keep white on hover for better contrast */
    text-decoration: none;
    /* Removed transform: translateY(-2px); for a cleaner hover */
}

/* Service Categories Section */
section h2 + .service-category-container {
    margin-top: 40px; /* Increased margin */
}

.service-category-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Adjusted min-width */
    gap: 30px; /* Increased gap */
}

.service-category {
    background-color: #ffffff;
    border-radius: 10px; /* Slightly more rounded */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* More prominent shadow */
    padding: 30px; /* Increased padding */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.service-category:hover {
    transform: translateY(-8px); /* More pronounced lift */
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-category h3 {
    color: #2687ef; /* Consistent dark blue */
    margin-top: 0;
    margin-bottom: 20px; /* Increased margin */
    font-size: 1.8em; /* Slightly larger */
}

.service-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1; /* Allow list to take available space */
}

.service-category ul li {
    margin-bottom: 10px; /* Increased spacing */
    color: #495057; /* Darker text */
    font-size: 1em;
}

.service-category ul li a {
    color: #007bff; /* Standard link blue */
    text-decoration: none;
}

.service-category ul li a:hover {
    text-decoration: underline;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted min-width */
    gap: 25px; /* Increased gap */
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 40px; /* Increased margin */
    text-align: center; /* Center the grid items within the container */
}

.location-item {
    background-color: #ffffff;
    border-radius: 10px; /* Slightly more rounded */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* More prominent shadow */
    padding: 25px; /* Increased padding */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content vertically */
}

.location-item:hover {
    transform: translateY(-8px); /* More pronounced lift */
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.location-item a {
    font-weight: 700; /* Bolder text */
    color: #2082eb;
    display: block;
    margin-bottom: 8px; /* Increased margin */
    font-size: 1.1em; /* Slightly larger font */
}

.location-item a:hover {
    text-decoration: underline;
}

.location-item::before {
    content: '\1F4CD'; /* Unicode for pushpin emoji */
    font-size: 2em;
    color: #dc3545; /* Red pin color */
    margin-bottom: 10px;
}

/* Footer Styling */
footer {
    background-color: #212529; /* Darker, more prominent footer */
    color: #f8f9fa; /* Lighter text */
    padding: 40px 0; /* Increased padding */
    text-align: center;
    margin-top: 80px; /* More space from main content */
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08); /* More prominent top shadow */
    font-size: 0.95em; /* Slightly larger font */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center content */
    gap: 40px; /* Space between info and nav */
    margin-bottom: 30px; /* Space above copyright */
    width: 100%;
}

.footer-company-info {
    text-align: center;
}

.footer-company-info h3 {
    color: #ffffff;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}

.footer-company-info p {
    color: #e9ecef;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.footer-company-info a {
    color: #adb5bd; /* Subtle link color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-company-info a:hover {
    color: #f8f9fa;
    text-decoration: underline;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-nav ul li a {
    color: #adb5bd; /* Subtle link color */
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-nav ul li a:hover {
    color: #f8f9fa; /* Lighter on hover */
    text-decoration: underline;
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.85em;
}

.footer-bottom p {
    color: #adb5bd;
    margin: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #1482f7; /* Consistent dark blue for headings */
    margin-top: 2.5em; /* Adjusted top margin */
    margin-bottom: 1em; /* Adjusted bottom margin */
    line-height: 1.3;
    font-weight: 700; /* Bolder headings */
    font-family: 'Montserrat', sans-serif; /* Use Montserrat for all headings */
}

h1 {
    font-size: 3em; /* Adjusted font size */
    text-align: left; /* Aligned left for content h1 */
    color: #1880f0; /* Professional blue */
    padding-bottom: 20px; /* Increased padding */
    border-bottom: 2px solid #e0e0e0; /* Softer border */
    margin-bottom: 1.5em;
}

h2 {
    font-size: 2.5em; /* Adjusted font size */
    color: #1e80ea;
}

h3 {
    font-size: 2em; /* Adjusted font size */
    color: #2588f1;
}

p {
    margin-bottom: 1.5em; /* Increased spacing */
    font-size: 1.05em; /* Slightly larger font size */
    color: #343a40; /* Darker text for readability */
}

a {
    color: #007bff; /* Standard link blue */
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

a:hover {
    color: #177eec;
    text-decoration: underline;
}

ul,
ol {
    margin-bottom: 1.5em; /* Increased spacing */
    padding-left: 30px;
    color: #343a40; /* Darker list text */
}

/* Figures and Images */
figure {
    margin: 3em 0; /* Adjusted margin */
    text-align: center;
}

figure img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Slightly more rounded corners */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* More prominent shadow */
    transition: transform 0.3s ease;
}

figure img:hover {
    transform: translateY(-8px); /* More pronounced lift */
}

figcaption {
    font-size: 0.95em; /* Slightly larger */
    color: #6c757d;
    margin-top: 15px;
    line-height: 1.6;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse; /* Changed to collapse for cleaner look */
    border-spacing: 0;
    margin: 3em 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* More prominent shadow */
    border-radius: 10px; /* Slightly more rounded */
    overflow: hidden;
}

th,
td {
    border: 1px solid #dee2e6; /* Bootstrap-like border */
    padding: 18px 22px; /* Increased padding */
    text-align: left;
}

th {
    background-color: #1882f3; /* Darker professional blue */
    color: white;
    font-weight: 600; /* Slightly less bold */
    text-transform: uppercase; /* Changed to uppercase */
    font-size: 0.95em; /* Slightly larger font */
}

tr:nth-child(even) {
    background-color: #f8f9fa; /* Lighter stripe */
}

tr:hover {
    background-color: #e6f2ff; /* Lighter blue on hover */
    transition: background-color 0.2s ease;
}

/* Blockquotes */
blockquote {
    background-color: #f0f8ff; /* Very light blue */
    border-left: 6px solid #007bff; /* Thicker, consistent border */
    padding: 25px 30px; /* Increased padding */
    margin: 3em 0;
    font-style: italic;
    color: #495057; /* Darker gray */
    border-radius: 8px; /* Slightly more rounded */
    font-size: 1.1em; /* Larger font */
    box-shadow: 0 2px 10px rgba(0,0,0,0.08); /* Subtle shadow */
}

/* Horizontal Rule */
hr {
    border: 0;
    height: 3px; /* Thicker rule */
    background: #e0e0e0; /* Solid light gray */
    margin: 5em 0;
    opacity: 0.8;
}

/* Call to Action / Info Box (General) */
.call-to-action {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Refined blue gradient */
    color: white;
    padding: 40px; /* Increased padding */
    text-align: center;
    border-radius: 10px; /* Slightly more rounded */
    margin: 4em 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25); /* More prominent shadow */
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-to-action:hover {
    transform: translateY(-5px); /* More pronounced lift on hover */
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.call-to-action h3 {
    color: white;
    font-size: 2.5em; /* Larger font size */
    margin-top: 0;
    margin-bottom: 1em;
    font-weight: 700; /* Bolder */
}

.call-to-action p {
    font-size: 1.2em; /* Larger font size */
    margin-bottom: 2em;
    color: #e6f2ff; /* Lighter blue for paragraph */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.call-to-action a {
    background: #28a745; /* Keep vibrant green */
    color: white;
    padding: 15px 35px; /* Increased padding */
    border: none;
    border-radius: 35px; /* More rounded */
    font-weight: 700;
    transition: all 0.3s ease;
    letter-spacing: 1px; /* More pronounced letter spacing */
    text-transform: uppercase;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.call-to-action a:hover {
    background-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Specific overrides for existing inline styles */
div[style*="background: #f0f7ff"] {
    background: #e9f5ff !important; /* Very light blue */
    border-left: 8px solid #007bff !important; /* Thicker, consistent border */
    padding: 30px !important; /* Increased padding */
    margin: 35px 0 !important; /* Increased margin */
    border-radius: 8px; /* Slightly more rounded */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

div[style*="background: #f0f7ff"] h3 {
    color: #0056b3 !important;
    font-size: 2em !important; /* Larger font */
    margin-top: 0 !important;
}

div[style*="background: #f0f7ff"] p {
    color: #343a40 !important;
    font-size: 1.05em !important; /* Slightly larger font */
}

div[style*="background: #f0f7ff"] a {
    background: #007bff !important;
    color: white !important;
    padding: 14px 30px !important; /* Increased padding */
    text-decoration: none !important;
    border-radius: 35px !important; /* More rounded */
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

div[style*="background: #f0f7ff"] a:hover {
    background: #107ef3 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    header {
        padding: 15px 0;
    }

    .header-top {
        padding: 15px 15px;
    }

    header h1 {
        font-size: 2.2em;
    }

    .header-tagline {
        font-size: 0.8em;
    }

    .primary-nav ul li {
        margin: 0 10px 10px 10px; /* Adjusted spacing */
    }

    .primary-nav ul li a {
        font-size: 0.95em;
        padding: 8px 12px;
    }

    .hero-section {
        padding: 50px 0;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content .tagline {
        font-size: 1.1em;
    }

    .hero-section ul {
        gap: 20px;
    }

    .hero-section ul li {
        min-width: 100%;
        padding: 15px 20px;
    }

    h1 {
        font-size: 2.5em;
        padding-bottom: 15px;
        margin-bottom: 1.2em;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.6em;
    }

    .container {
        width: 95%;
        padding: 30px 15px;
    }

    table {
        margin: 2.5em 0;
    }

    th,
    td {
        padding: 15px 18px;
    }

    td:before {
        top: 6px;
        left: 6px;
        width: 45%;
    }

    .call-to-action {
        padding: 30px;
        margin: 3.5em 0;
    }

    .call-to-action h3 {
        font-size: 2em;
    }

    .call-to-action p {
        font-size: 1.1em;
        margin-bottom: 1.8em;
    }

    .call-to-action a {
        padding: 12px 25px;
        font-size: 1em;
    }

    footer {
        margin-top: 60px;
        padding: 20px 0;
    }
}

/* Contact Page Specific Styles */
.contact-details {
    background-color: #ffffff;
    border: 1px solid #e0e0e0; /* Softer border */
    border-radius: 10px; /* Slightly more rounded */
    padding: 30px; /* Increased padding */
    margin-bottom: 35px; /* Increased margin */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* More prominent shadow */
}

.contact-details p {
    margin-bottom: 12px; /* Increased margin */
    font-size: 1.1em; /* Slightly larger font */
    color: #343a40; /* Darker text */
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details a {
    color: #007bff; /* Standard link blue */
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    background-color: #ffffff;
    border-radius: 10px; /* Slightly more rounded */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* More prominent shadow */
    padding: 45px; /* Increased padding */
}

.contact-form h3 {
    color: #177fef; /* Consistent dark blue */
    font-size: 2.2em; /* Larger font */
    margin-top: 0;
    margin-bottom: 35px; /* Increased margin */
    text-align: center;
}

.form-group {
    margin-bottom: 25px; /* Increased margin */
}

.form-group label {
    display: block;
    margin-bottom: 10px; /* Increased margin */
    font-weight: 600;
    color: #343a40; /* Darker text */
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 14px 18px; /* Increased padding */
    border: 1px solid #ced4da;
    border-radius: 8px; /* Slightly more rounded */
    font-family: 'Poppins', sans-serif;
    font-size: 1.05em; /* Slightly larger font */
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25); /* More pronounced focus */
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px; /* Increased min-height */
}

.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 14px 30px; /* Increased padding */
    border: none;
    border-radius: 8px; /* Slightly more rounded */
    font-size: 1.1em; /* Larger font */
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: block;
    width: 100%;
    max-width: 300px; /* Increased max-width */
    margin: 30px auto 0 auto; /* Center and more top margin */
}

.btn-primary:hover {
    background-color: #2c91fc;
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

@media (max-width: 768px) {
    .contact-form {
        padding: 30px;
    }

    .contact-form h3 {
        font-size: 2em;
        margin-bottom: 25px;
    }

    .form-group label {
        font-size: 1em;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea {
        padding: 12px 15px;
        font-size: 1em;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 1.05em;
        max-width: 100%;
    }
}
