
/* Modern Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1E3A8A;
    --accent: #3B82F6;
    --background: #F3F4F6;
    --text: #1F2937;
    --footer-bg: #1E293B;
    --burger-bg: #1E293B;
    --hover-accent: #38BDF8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

nav {
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    padding: 0.75rem;
}

nav a {
    color: white;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: #93C5FD;
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}

footer {
    background-color: var(--footer-bg);
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.hero {
    background-color: #e6f0ff;
    color: #003366;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.hero p {
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.gallery {
    column-count: 3;
    column-gap: 1rem;
}

.gallery figure {
    break-inside: avoid;
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery img {
    width: 100%;
    display: block;
}

.gallery figcaption {
    padding: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

@media (max-width: 768px) {
    .gallery {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .gallery {
        column-count: 1;
    }
}

/* Tab Buttons Styling */
.tab-buttons {
    text-align: center;
    margin: 20px 0;
}

.tab-button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.tab-button:hover,
.tab-button.active {
    background-color: var(--accent);
}

.footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
}

.footer-flex img {
    max-height: 60px;
    width: auto;
}

.footer-text {
    text-align: center;
    flex: 1;
}

.header-link {
    text-decoration: none;
    color: white;
}

.header-link:visited,
.header-link:hover {
    color: white;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--burger-bg);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    z-index: 1000;
    display: none;
}

.cookie-banner a {
    color: var(--hover-accent);
    text-decoration: underline;
}

.cookie-banner button {
    margin-left: 15px;
    padding: 8px 12px;
    background-color: var(--hover-accent);
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

/* Burger Menu Styles */
.burger-menu {
    background: var(--burger-bg);
    padding: 10px 20px;
    position: relative;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.burger-nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.burger-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px;
    transition: background 0.3s, color 0.3s;
}

.burger-nav a:hover {
    background-color: var(--primary);
    color: var(--hover-accent);
    border-radius: 5px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .burger-nav {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--burger-bg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s ease, opacity 0.4s ease;
        z-index: 999;
    }

    .burger-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }
}
.services-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

    .service-card:hover {
        transform: translateY(-4px);
    }

    .service-card h3 {
        margin-top: 0;
        color: #1E2A38;
    }

    .service-card ul {
        padding-left: 1.2rem;
    }

    .service-card li {
        margin-bottom: 0.5rem;
    }

/* Responsive layout for tablets and up */
@media (min-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive layout for desktops and up */
@media (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.contact-section {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    background-color: #fdfdfd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .contact-section h2 {
        color: #1E2A38;
        margin-bottom: 1rem;
    }

    .contact-section p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }

.contact-info {
    margin-top: 1rem;
    display: grid;
    gap: 0.75rem;
}

    .contact-info a {
        color: #007B8A;
        text-decoration: none;
    }

        .contact-info a:hover {
            text-decoration: underline;
        }

/* Responsive padding for smaller screens */
@media (max-width: 600px) {
    .contact-section {
        padding: 1rem;
    }
}

.privacy-section {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    background-color: #fdfdfd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .privacy-section h2 {
        color: #1E2A38;
        margin-bottom: 1rem;
    }

    .privacy-section h3 {
        margin-top: 1.5rem;
        color: #007B8A;
    }

    .privacy-section p,
    .privacy-section ul {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .privacy-section ul {
        padding-left: 1.2rem;
    }

    .privacy-section li {
        margin-bottom: 0.5rem;
    }

    .privacy-section a {
        color: #007B8A;
        text-decoration: none;
    }

        .privacy-section a:hover {
            text-decoration: underline;
        }

/* Responsive padding for smaller screens */
@media (max-width: 600px) {
    .privacy-section {
        padding: 1rem;
    }
}

.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.tab-button {
    background-color: #1E2A38;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .tab-button:hover,
    .tab-button.active {
        background-color: #007B8A;
    }

.tab-content {
    display: none;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

    .tab-content.active {
        display: block;
    }

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

    .gallery figure {
        margin: 0;
        background-color: #f9f9f9;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease;
    }

        .gallery figure:hover {
            transform: scale(1.02);
        }

    .gallery img {
        width: 100%;
        height: auto;
        display: block;
    }

    .gallery figcaption {
        padding: 0.75rem;
        font-size: 0.9rem;
        color: #333;
    }



