:root {
    --primary-color: #3DDA24;
    --secondary-color: #91CE76;
    --text-color: #333;
    --white: #fff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Header styles inherited from style.css */

.contact-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.contact-content h2 {
    color: var(--primary-color);
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    position: relative;
}

.contact-content h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 1rem auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 2rem;
    text-align: center;
}

.contact-item .info h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item .info p {
    color: #666;
    line-height: 1.6;
    padding: 0;
}

.contact-item .info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item .info a:hover {
    color: var(--secondary-color);
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background-color: var(--primary-color);
    padding: 2rem 1rem;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

footer h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

footer nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

footer a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.8;
}

.scan img {
    max-width: 100%;
    height: auto;
}

.quicklinks{
    position: relative;
    margin-left: 65px;
    margin-top: 30px;
}

.aboutlab{
    position: relative;
    margin-left: 65px;
    margin-top: 30px;
}
h3{
    color: white;
}
.scan{
    position: relative;
    margin-left: 15px;
    margin-top: 15px;
}
.line{
    width: 65px;
}
.data{
    margin-left: 30px;
    margin-top: 30px;
}
p{
    padding-left: 50px;
}
li{
    padding-left: 50px;
}
pre{
    padding-left: 50px;
}
a{
    text-decoration: none;
}
a{
    color: black;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .contact-content {
        margin: 1rem auto;
    }

    .contact-info {
        gap: 1rem;
    }

    .contact-item {
        padding: 1rem;
    }

    footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    footer nav {
        align-items: center;
    }

    .scan {
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .contact-item i {
        margin-bottom: 0.5rem;
    }

    .nav-wel h1 {
        font-size: 1rem;
    }
}