/* Global Styles (Modified to be more specific where needed) */
body {
    line-height: 1.6;
    color: #333;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

.button {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
    cursor: pointer;
}

.button:hover {
    background: #0055aa;
}

/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 65px;
    width: auto;
}

.logo-text h1 {
    margin: 0;
    line-height: 1.2;
    color: #0066cc;
    font-size: 20px;
    font-weight: 700;
    font-family: Baskerville Old Face;
    letter-spacing: 1px;
}

.logo-text p {
    margin: 0;
    font-size: 13px;
    color: #444;
    font-weight: 600;
    letter-spacing: 0.3px;
    max-width: 250px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 500;  /* Base font-weight */
    transition: color 0.3s ease;
    font-size: 15px;
}

nav ul li a:hover {
    color: #0066cc;
    font-weight: 500;  /* Explicitly set font-weight for hover (same as base) */
}

nav ul li a.active {
    color: #0066cc;
    font-weight: 500;  /* Explicitly set font-weight for active (same as base) */
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}


.hero h2 {
    font-size: 56px;
    margin-bottom: 20px;
    font-family: 'Algerian', sans-serif;
    font-weight: 700;
    color: #ffa600;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
    font-family: 'Baskerville Old Face', serif;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-button{
    margin-top: 30px;
    font-size: 20px;
    padding: 15px 30px;
}

/* Slideshow Styles */
.hero .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease-in-out;
}

.hero .slide:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('power-lines-bg .jpg');
    opacity: 1;
    animation: fade 15s infinite;
}

.hero .slide:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('power-lines-bg 2.jpg');
    animation: fade 15s infinite 5s;
}

.hero .slide:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('power-lines-bg 3.jpg');
    animation: fade 15s infinite 10s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    16.66% {
        opacity: 1;
    }

    33.32% {
        opacity: 1;
    }

    49.98% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


/* Services Section */
.services {
    text-align: center;
    padding: 80px 0;
    background: #f9f9f9;
}

.services h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
    color: #0066cc;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Baskerville Old Face', serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
    font-size: 50px;
    margin-bottom: 25px;
    color: #0066cc;
}

.service-card h3 {
    margin-bottom: 18px;
    color: #0066cc;
    font-size: 24px;
    font-weight: 600;
}

.service-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

/* About Section */
.about {
    padding-bottom: 10px !important;
    text-align: center;
}

.about h2 {
    margin-bottom: 50px;
    font-size: 36px;
    color: #0066cc;
    font-weight: 600;
    letter-spacing: 1px;
}

.about p {
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

/* Page Header */
.page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                    url('content/projects/contact-bg.png'); /* Adjust path as needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  padding: 150px 0;
}

.page-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffa600;
    font-family: Baskerville Old Face, serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 28px;
    font-family: "Baskerville Old Face", serif;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Projects Section */
.projects {
    padding: 80px 0;
}

.projects h2 {
    font-size: 26px;
    margin-bottom: 60px;
    color: #0066cc;
    text-align: center;
    font-family: Bookman Old Style, serif;
    text-decoration: underline;
    font-weight: 600;
    letter-spacing: 1px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.project-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0066cc;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    z-index: 1;
}

.project-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.project-card img{
    width: 100%;
    height: auto;
    display: block;
}

.project-details {
    padding: 25px;
}

.project-details h3{
    margin-bottom: 15px;
    color: #0066cc;
    font-size: 22px;
    font-weight: 600;
}

.project-details p{
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3,
.contact-form h3 {
    color: #0066cc;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.contact-info strong{
    color: #0066cc;
}

.emergency {
    color: #cc0000;
    font-weight: bold;
    font-size: 20px;
}

.contact-map {
    margin-top: 30px;
    width: 100%;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 18px;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        justify-content: center;
        margin-bottom: 20px;
    }

    .logo-text h1 {
        font-size: 28px;
    }

    .logo-text p {
        font-size: 16px;
        max-width: 280px;
        margin: 0 auto;
    }

    nav ul {
        justify-content: center;
    }

    nav ul li a{
        font-size: 18px;
    }

    .hero {
        padding: 200px 0;
    }

    .hero h2 {
        font-size: 48px;
    }

    .hero p {
        font-size: 20px;
    }

    .services h2{
        font-size: 32px;
    }

    .about h2{
        font-size: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        margin-top: 60px;
        padding: 30px;
    }

    .page-header h2{
        font-size: 40px;
    }

    .page-header p{
        font-size: 24px;
    }

    .projects h2{
        font-size: 32px;
    }

    .project-card{
        margin-bottom: 30px;
    }
}

/* New Styles for Shaded Sections */
.section-shade {
    background-color: #f2f2f2;
    padding-top: 80px;
    padding-bottom: 80px;
}

.services h2,
.about h2:nth-of-type(1) {
    background-color: #0066cc;
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 40px;
    width: auto;
    min-width: 300px;
    font-size: 32px;
}

/* Team Members Styles */
.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px; /* Reduced from 1px to 5px */
    margin: 5px 0; /* Reduced margins */
}

.team-member {
    flex: 0 0 auto; /* Prevent flex-grow */
    margin: 5px; /* Reduced margin */
    padding: 5px; /* Reduced padding */
    min-width: 150px; /* Slightly smaller minimum width */
}

.team-member img {
    width: 120px; /* Smaller image */
    height: 120px; /* Smaller image */
    margin: 0 auto; /* Center image */
    border: 3px solid #0066cc; /* Thinner border */
}

.team-member img:hover{
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.team-member p {
    font-size: 18px;
    color: #666;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .team-members {
        gap: 5px;
    }
    .team-member {
        min-width: 120px;
    }
    .team-member img {
        width: 100px;
        height: 100px;
    }

    .services h2, .about h2:nth-of-type(1){
        min-width: 100%;
        text-align: center;
    }
}
/* About Section Styles */
.about {
    padding: 150px 0;
    background: #fff;
}

.about h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: #0066cc;
    font-weight: 700;
    font-family: 'Baskerville Old Face', serif;
}

.about-content {
    
    margin: 0 auto;
}

.about-content p {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
    text-align: align left;
    font-family: 'Baskerville Old Face', serif;
    max-width: 900px;
}

.about h3 {
    color: #0066cc;
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: 600;
    font-family: 'Baskerville Old Face', serif;
    
}

.expertise-list {
    margin: 25px 0;
    padding-left: 20px;
}

.expertise-list li {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
    position: relative;
    padding-left: 30px;
    
}

.expertise-list li:before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: #0066cc;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 50px 0;
}

.mission, .vision {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mission h3, .vision h3 {
    color: #0066cc;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.proprietor-speech {
    margin: 60px auto; /* Added to center the box */
    background: #f2f9ff;
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid #0066cc;
    width: 70%; /* Changed from 95% to 80% */
    max-width: 650px;
    font-family: 'Baskerville Old Face', serif;
}

.proprietor-speech h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.speech-content {
    display: flex;
    align-items: flex-start;
    gap: 10px; /* Reduced from 40px */
    flex-wrap: wrap;
    justify-content: center;
}

.speech-content img {
    width: 150px; /* Slightly smaller */
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0066cc; /* Thinner border */
    margin-right: 20px;
    align-self: flex-start; /* Better vertical alignment */
}

.speech-text {
    flex: 1;
    padding-left: 10px; /* Small left padding */
    max-width: 500px;
}

.speech-text p {
    font-size: 20px; /* Slightly smaller font */
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

.signature {
    font-weight: 600;
    font-style: italic;
    color: #0066cc;
    margin-top: 20px;
}

/* Responsive Styles for About Section */
@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }

    .speech-content {
        flex-direction: column;
        gap: 1px;
    }

    .speech-content img {
        margin-right: 0;
        margin-bottom: 2px;
        width: 100px;
        height: 100px;
    }

    .speech-text {
        padding-left: 0;
    }

    .about h2 {
        font-size: 30px;
    }

    .about h3 {
        font-size: 24px;
    }

    .proprietor-speech {
        padding: 30px 20px;
    }
}
@media (max-width: 768px) {
    .logo-img {
        height: 60px;  /* Smaller size for mobile */
    }
}
/* Three Column Box Layout */
.mission-vision-expertise {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
    max-width: 1200px; /* Increased from default */
    margin-left: auto;
    margin-right: auto;
}

.expertise-box,
.mission-box,
.vision-box {
    background: #f9f9f9;
    padding: 15px; /* Reduced from 30px */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    min-height: 300px; /* Ensure equal height */
    display: flex;
    flex-direction: column;
}

.expertise-box:hover,
.mission-box:hover,
.vision-box:hover {
    transform: translateY(-5px);
}

.expertise-box h3,
.mission-box h3,
.vision-box h3 {
    color: #0066cc;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #0066cc;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-list li {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
    position: relative;
    padding-left: 10px;
}

.expertise-list li:before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .mission-vision-expertise {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1200px) {
    .mission-vision-expertise {
        grid-template-columns: 1fr;
    }
}
/* Professional Overview Section */
.professional-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.professional-overview h2 {
    text-align: center;
    font-size: 36px;
    color: #0066cc;
    margin-bottom: 50px;
    position: relative;
}

.professional-overview h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #0066cc;
    margin: 15px auto 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.overview-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #0066cc;
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.overview-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #0066cc;
}

.overview-card h3 {
    color: #0066cc;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.overview-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overview-card li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 16px;
}

.overview-card li:before {
    content: "•";
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.overview-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 8px;
    font-size: 18px;
}

.overview-footer strong {
    color: #0066cc;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .professional-overview {
        padding: 60px 0;
    }

    .professional-overview h2 {
        font-size: 28px;
    }

    .overview-card {
        padding: 20px;
    }

    .overview-card h3 {
        font-size: 20px;
    }
}
/* Improve focus states */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

/* Better contrast for text */
.hero p {
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); /* Darker shadow for better contrast */
}
/* Make active link more visible */
nav ul li a.active {
    color: #0066cc;
    font-weight: 700;
    position: relative;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 15px;
    right: 15px;
    height: 3px;
    background: #0066cc;
    border-radius: 3px;
}

/* Project Filter Tabs */
/* Project Filter Tabs */
.project-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0 40px;
    padding: 0 15px;
}

.filter-btn {
    padding: 12px 25px;
    background-color: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: all 0.3s ease;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background-color: #e0e0e0;
    border-color: #ccc;
}

.filter-btn.active {
    background-color: #0066cc;
    color: white;
    border-color: #0066cc;
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.2);
}

/* Project Categories */
.project-category {
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .project-filters {
        gap: 8px;
        margin: 20px 0 30px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 14px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .project-filters {
        gap: 6px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* Clients Section */
.clients {
    padding: 60px 0;
    text-align: center;
}

.clients h2 {
    font-size: 35px;
    color: #0066cc;
    margin-bottom: 50px;
    font-weight: 700;
    font-family: 'Baskerville Old Face', serif;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 240px;
}

.client-logo {
    width: 180px;
    height: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-logo:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.client-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
    line-height: 1.4;
}

/* Responsive Adjustments (keep this part the same) */
@media (max-width: 992px) {
    .clients-grid {
        gap: 40px;
    }
    .client-item {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .clients {
        padding: 40px 0;
    }
    .clients h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .clients-grid {
        gap: 30px;
    }
    .client-item {
        width: 160px;
    }
    .client-logo {
        width: 140px;
        height: 80px;
    }
    .client-name {
        font-size: 16px;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .clients-grid {
        flex-direction: column;
        gap: 40px;
    }
    .client-item {
        width: 100%;
    }
}

/* ===== Team Member Round Borders ===== */

/* Keep existing spacing from previous changes */
.team-members {
    gap: 100px !important;
    margin: 5px 0 !important;
}

.team-member {
    margin: 0 !important;
    padding: 0 !important;
}

.team-member img {
    border-radius: 50% !important;
    margin-bottom: 0 !important;  /* Remove space below photo */
    display: block !important;    /* Fix any alignment issues */
    object-fit: cover !important;
    border: 3px solid #0066cc !important;
}

@media (max-width: 768px) {
    .team-members {
        gap: 5px !important;
    }
    .team-member img {
        width: 110px !important;
        height: 110px !important;
    }
}

.team-member h3 {
    margin: 20px !important;         /* Remove all margins around name */
    padding: 0px 0 0 0 !important; /* Tiny 2px top padding only */
    line-height: 1 !important;    /* Tight line spacing */
    font-size: 20px !important;
    font-family: 'Baskerville Old Face', serif;
}

.team-member p {
    margin: 0 !important;         /* Remove all margins */
    padding: 0 !important;        /* Remove all padding */
    line-height: 0 !important;    /* Tight line spacing */
    font-size: 18px !important;   /* Optional: Slightly smaller text */
    font-family: 'Baskerville Old Face', serif;
}

/* Footer Styles */
footer {
    background: #222;
    color: #fff;
    padding: 50px 0 20px;
    width: 100%;
    overflow: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* This centers the columns */
    gap: 40px;
    margin-bottom: 30px;
  }
  
  .footer-contact, 
  .footer-links, 
  .footer-map {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: left;
    padding: 0 15px;
  }
  
  .footer-links a {
    color: #ffa600; /* Gold color to match your theme */
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #ffffff; /* White on hover */
    text-decoration: underline;
  }

  .footer-legal {
    text-align: center;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid #444;
    margin-top: 20px;
    font-size: 14px;
  }
  
  /* Map styling */
  .footer-map iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 5px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
    }
    
    .footer-contact, 
    .footer-links, 
    .footer-map {
      text-align: center;
      max-width: 100%;
    }
    
    .footer-links ul {
      display: inline-block;
      text-align: left;
    }
  }