/* Add these styles to your existing style.css file */

/* Contact Page Specific Styles */
.contact-main {
    padding: 20px;
    max-width: 1000px; /* Adjust max-width for contact content */
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.contact-hero {
    text-align: center;
    padding: 40px 20px;
    background-color: #f7fcfc; /* Very light blue/green background for hero */
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #e0f2f7;
}

.contact-hero h2 {
    color: #2c3e50;
    font-size: 2.8em;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 1.2em;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.info-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.info-card .icon {
    font-size: 3.5em;
    color: #3498db; /* Blue for icons */
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.6em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 8px;
}

.info-card a {
    color: #27ae60; /* Green for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.info-card a:hover {
    color: #229a53;
    text-decoration: underline;
}

.info-card .small-text {
    font-size: 0.9em;
    color: #888;
}

.contact-form-section {
    background-color: #fcfcfc;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-form-section p {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 25px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    font-size: 1.05em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: calc(100% - 22px); /* Account for padding and border */
    padding: 12px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    outline: none;
}

.contact-form textarea {
    resize: vertical; /* Allow vertical resizing */
    min-height: 120px;
}

.contact-form .submit-btn {
    display: block;
    width: 100%;
    padding: 15px 25px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.contact-form .submit-btn:hover {
    background-color: #229a53;
    transform: translateY(-2px);
}

.contact-form .submit-btn:active {
    transform: translateY(0);
}

.faq-section {
    background-color: #e0f2f7; /* Light blue background for FAQ */
    border: 1px solid #cce7f0;
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.faq-section p {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 25px;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.3em;
    color: #34495e;
    margin-top: 0;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1em;
    color: #555;
    line-height: 1.8;
    text-align: left; /* Keep FAQ answers left-aligned */
    margin-bottom: 0; /* Remove default paragraph margin */
}

.faq-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.faq-item a:hover {
    text-decoration: underline;
}




/* Responsive Adjustments for Contact Page */
@media (max-width: 768px) {
    .contact-main {
        padding: 15px;
        margin: 15px auto;
    }

    .contact-hero h2 {
        font-size: 2.2em;
    }

    .contact-hero p {
        font-size: 1em;
    }

    .contact-info-grid {
        grid-template-columns: 1fr; /* Stack info cards on mobile */
        gap: 20px;
    }

    .info-card {
        padding: 25px;
    }

    .info-card .icon {
        font-size: 3em;
    }

    .info-card h3 {
        font-size: 1.4em;
    }

    .contact-form-section, .faq-section {
        padding: 25px;
    }

    .contact-form-section h2, .faq-section h2 {
        font-size: 1.8em;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        width: calc(100% - 20px); /* Adjust for smaller padding */
        padding: 10px;
    }

    .contact-form .submit-btn {
        font-size: 1.1em;
        padding: 12px 20px;
    }

    .faq-item h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .contact-main {
        padding: 10px;
        margin: 10px auto;
    }

    .contact-hero h2 {
        font-size: 1.8em;
    }

    .contact-hero p {
        font-size: 0.9em;
    }

    .info-card {
        padding: 20px;
    }

    .info-card .icon {
        font-size: 2.5em;
    }
    .contact-form-section, .faq-section {
        padding: 20px;
    }
}


.logo-container {
    display: flex;
    flex-direction: column; /* Stack logo above name */
    align-items: center;
    margin-bottom: 1em;
}

.website-logo {
    max-width: 100px; /* Adjust logo size */
    height: auto;
    margin-bottom: 0.5em; /* Space between logo and name */
}

header {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 1em 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Update your existing style.css file with these modifications */



/* No change needed for @media (max-width: 480px) unless specific vertical adjustments are desired */

/* Update your existing style.css file with these modifications */

/* Footer */
footer {
    background-color: #2c3e50; /* Darker background, matching header */
    color: #ecf0f1; /* White font color */
    padding: 30px 20px; /* Increased padding for better spacing */
    margin-top: 40px; /* More space above the footer */
    font-size: 0.95em;
    border-top: 5px solid #3498db; /* A subtle, colorful top border */
    text-align: center; /* Center align all text content by default */

    /* Ensure footer adapts to vertical header */
    padding-left: 200px; /* This needs to match your vertical header width */
    transition: padding-left 0.3s ease; /* Smooth transition for responsiveness */
}

footer p {
    margin-bottom: 10px; /* Space between paragraphs */
    line-height: 1.5;
}

footer p#contact {
    font-weight: bold;
    margin-bottom: 15px; /* More space below contact info */
}

/* Social Media Links Styling - Revisit for better visual separation and hover effects */
.social-media-links {
    margin-top: 20px; /* More space above social icons */
    display: flex;
    justify-content: center;
    gap: 25px; /* Increased space between icons */
    padding-bottom: 10px; /* Space below icons */
}

.social-media-links a {
    color: #ecf0f1; /* White icons by default */
    font-size: 2.2em; /* Slightly larger icons */
    transition: color 0.3s ease, transform 0.2s ease;
    border-radius: 50%; /* Make icons circular on hover/focus */
    padding: 5px; /* Add padding for the circle */
    display: inline-flex; /* Use flex to center icon within its circle */
    align-items: center;
    justify-content: center;
    width: 45px; /* Fixed width for consistent circle size */
    height: 45px; /* Fixed height for consistent circle size */
    box-sizing: border-box; /* Include padding and border in size */
}

/* Specific hover effects for social icons */
.social-media-links a:hover {
    color: #ffffff; /* Keep icon white */
    transform: translateY(-5px); /* More pronounced lift */
    background-color: #3498db; /* Blue background on hover */
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.7); /* Glow effect */
}

/* Responsive Design (for phones) */
@media (max-width: 768px) {
    /* Revert footer padding for horizontal header */
    footer {
        padding-left: 0;
        padding: 20px 15px; /* Adjust padding for smaller screens */
    }

    footer p {
        font-size: 0.9em; /* Slightly smaller text on mobile */
    }

    .social-media-links {
        margin-top: 15px;
        gap: 20px; /* Slightly less space on mobile */
    }

    .social-media-links a {
        font-size: 1.8em; /* Slightly smaller icons on mobile */
        width: 40px;
        height: 40px;
    }
}

/* No change needed for @media (max-width: 480px) for footer */
/* Update your existing style.css file with these modifications */

/* Header & Navigation */
header {
    position: static; /* Remove fixed positioning */
    top: auto;
    left: auto;
    width: 100%; /* Full width */
    height: auto; /* Auto height based on content */
    background-color: #2c3e50; /* Dark background */
    color: #ecf0f1; /* White font color for all header text */
    padding: 1em 0; /* Original padding */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Shadow at the bottom */
    display: flex; /* Use flexbox for layout */
    flex-direction: row; /* Arrange items horizontally */
    justify-content: space-between; /* Space out logo/name and nav */
    align-items: center; /* Vertically align items in the middle */
    z-index: 1000;
    overflow-y: visible; /* No vertical scrollbar needed */
    padding-left: 20px; /* Add some general left padding */
    padding-right: 20px; /* Add some general right padding */
    box-sizing: border-box; /* Include padding in the width calculation */
}

/* Reset body padding from vertical header */
body {
    padding-left: 0; /* Remove the left padding */
    transition: none; /* No transition needed for padding on a static header */
}

/* Adjust logo container for horizontal layout */
.logo-container {
    display: flex;
    flex-direction: row; /* Logo and name side-by-side */
    align-items: center;
    margin-bottom: 0; /* Remove bottom margin */
    padding-top: 0; /* Remove top padding */
}

.website-logo {
    max-width: 80px; /* Adjust size as needed for horizontal header */
    height: auto;
    margin-right: 15px; /* Space between logo and name */
    margin-bottom: 0; /* Remove bottom margin */
}

.website-name {
    font-size: 2em; /* Good size for horizontal header */
    margin: 0;
    text-align: left; /* Align name to the left */
}

/* Navigation specific styles for horizontal layout */
nav {
    flex-grow: 0; /* Don't grow to fill space */
    width: auto; /* Auto width based on content */
    display: block; /* Revert to block display for nav container */
    margin-top: 0; /* Remove top margin */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Use flex for horizontal list items */
    flex-direction: row; /* Arrange list items horizontally */
    align-items: center; /* Vertically center items */
    justify-content: center; /* Center items if they don't fill space */
    flex-wrap: wrap; /* Allow navigation items to wrap on smaller screens */
    width: auto;
}

nav ul li {
    margin: 0 15px; /* Horizontal margin between items */
    width: auto; /* Reset width */
}

nav ul li a {
    color: #ecf0f1; /* White font color for navigation links */
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px; /* Padding for horizontal links */
    display: inline-block; /* Revert to inline-block */}