/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Define color variables */
:root {
    --persian-red: #CF3831; /* CTA buttons, highlights */
    --zomp-light: #52A390; /* Lighter shade for hover effects */
    --zomp-darker: #305F54; /* Even darker variation */     
    --zomp-darker-5: #284C43; /* 5% darker */
    --zomp-darker-10: #203C35; /* 10% darker */
    --zomp-darker-15: #182C26; /* 15% darker */
    --zomp-dark: #418172;
    --zomp: #DCE3E1; /* Main color for headers, buttons */
    --mantis: #6AB65D; /* Hover effects, borders */
    --white: #FEFEFE; /* Main background */
    --tangerine: #E58939; /* Subheadings, links */
    --dark-gray: #333333; /* Text color */
    --zomp-darker-30: #182C26; /* Previous shade */
    --zomp-darker-45: #15241F; /* 15% darker than #182C26 */
    
}

/* General button styles */
button {
    background-color: var(--zomp);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: var(--zomp-dark);
}

button:active {
    background-color: var(--zomp-darker);
}

/* General styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    margin: 0;
    min-height: 100vh;
}

/* Container for centering content */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
.header {
    background-color: var(--zomp);
    color: var(--white);
    padding: 5px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header .logo {
    height: 80px;
    width: 80px;
    background-image: url('img/log0.png');
    background-size: contain;
    background-repeat: no-repeat;
    border: transparent 0.1px #2B3A55ff;
    position: relative;
}

.logo::after {
    position: absolute;
    top: 50%;
    content: 'HMO Automation';
    color: #F5A623;
    font-size: 22px;
    margin-left: 60px;
    transform: translateY(-50%);
    opacity: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav ul li {
    display: inline;
}

.nav ul li a {
    color: var(--zomp-darker);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: var(--tangerine);
}

.cta-button1 {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--tangerine);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button1:hover {
    background-color: var(--zomp-darker);
}

/* Hero section */
.hero {
    position: relative;
    text-align: center;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    animation: heroSlide 15s infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

@keyframes heroSlide {
    0% { background-image: url('img/hmo5.jpeg'); }
    33.33% { background-image: url('img/hmo0.png'); }
    33.34% { background-image: url('img/h2.jpg'); }
    66.66% { background-image: url('img/Av_03.png'); }
    66.67% { background-image: url('img/hmo0.jpg'); }
    100% { background-image: url('img/hmo2.jpg'); }
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--zomp-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--persian-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--mantis);
}

/* Services section */
.services {
    padding: 50px 0;
    background-color: var(--white);
}

.services h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--zomp-darker);
    text-align: center;
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.service-item {
    background-color: var(--white);
    padding: 10px;
    border: 1px solid var(--mantis);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #26C6DA;
}

.service-item h3 {
    font-size: 18px;
    color: var(--mantis);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.service-item p {
    font-size: 15px;
    color: var(--dark-gray);
    margin-bottom: 15px;
    text-align: left;
}

.asi, .khba, .uci, .sid {
    background-size: cover;
    background-repeat: no-repeat;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.asi { background-image: url('img/av0.jpg'); }
.khba { background-image: url('img/knx2.jpg'); }
.uci { background-image: url('img/uci2.jpg'); }
.sid { background-image: url('img/sid1.jpg'); }

.zoom-in {
    animation: zoomIn 2s ease-in-out forwards;
}


@keyframes zoomIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
/* About section */
.about {
    padding: 50px 0;
    background-color: var(--white);
    text-align: center;
    border-top: 2px solid var(--mantis);
    border-bottom: 2px solid var(--mantis);
}

.about h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--zomp-darker);
    font-weight: bold;
}

.about p {
    font-size: 14px;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact section */
.contact {
    
    padding: 50px 0;
    background-color: var(--white);
}

.contact h2 {
    font-weight: bold;
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--zomp-darker);
    text-align: center;
}

.contact p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 300px;
    margin: 0 auto;
     
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--zomp-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--zomp);
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--tangerine);
    outline: none;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-button {
    display: block;
    width: 50%;
    padding: 12px;
    background-color: var(--persian-red);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--mantis);
}

/* Footer styles */
.footer {
    background-color: var(--zomp-darker-45);
    color: var(--white);
    text-align: center;
    padding: 20px 0;    
}

.footer-nav ul {
    list-style: none;
    margin-top: 10px;
}

.footer-nav ul li {
    display: inline;
    margin: 0 15px;
}

.footer-nav ul li a {
    color: var(--tangerine);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--mantis);
}

/* Chat Icon */
.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-icon a {
    display: flex;
    align-items: center;
    background-color: var(--zomp-light);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.2s;
}

.chat-icon a:hover {
    background-color: #C5CECC;
    transform: scale(1.05);
}

.chat-icon svg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.chat-icon span {
    font-size: 16px;
    font-weight: 500;
}

/* Chat Window */
.chat-window {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.chat-header {
    background-color: #DCE3E1;
    color: white;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 16px;
}

.chat-header button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 0 10px;
}

.chat-body {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background-color: #f9f9f9;
}

.message {
    margin: 8px 0;
    padding: 8px 12px;
    border-radius: 15px;
    max-width: 80%;
    font-size: 14px;
}

.bot-message {
    background-color: #e0e0e0;
    margin-right: 10px;
}

.user-message {
    background-color: #DCE3E1;
    color: white;
    margin-left: auto;
    margin-right: 10px;
}

.chat-footer {
    display: flex;
    padding: 10px;
    border-top: 1px solid #eee;
}

.chat-footer input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 15px;
    font-size: 14px;
    outline: none;
}

.chat-footer button {
    background-color: #DCE3E1;
    color: white;
    border: none;
    padding: 8px 12px;
    margin-left: 8px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
}

.chat-footer button:hover {
    background-color: #C5CECC;
}

/* Social Links */
.social-links {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999; /* Below chat window */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--mantis);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.2s;
}

.social-links a:hover {
    background-color: var(--zomp-light);
    transform: scale(1.1);
}

.social-links svg {
    width: 20px;
    height: 20px;
}


/* Portfolio Section */
.portfolio {
    padding: 10px 0;
    background-color: #FFFFFFff;
}

.portfolio h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--zomp-darker);
    text-align: center;    
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.portfolio-item {
    position: relative;
    height: 200px;
    background-color: #C4D1D6ff;
    border-radius: 8px;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.service-item1 {
    background-color: var(--white);
    padding: 20px;
    border: 1px solid var(--mantis);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-image: url('img/prj0.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.service-item2 {
    background-color: var(--white);
    padding: 20px;
    border: 1px solid var(--mantis);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-image: url('img/prj1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.service-item3 {
    background-color: var(--white);
    padding: 20px;
    border: 1px solid var(--mantis);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-image: url('img/prj7.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width:250px;
    height:250px;
}
.service-item4 {
    background-color: var(--white);
    padding: 20px;
    border: 1px solid var(--mantis);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-image: url('img/prj9.gif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width:250px;
    height:250px;
}
.project1{
    background-image: url('img/prj0.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width:250px;
    height:250px;
}
.project2{
    background-image: url('img/prj1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width:250px;
    height:250px;
}
.project3{
    background-image: url('img/prj2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width:250px;
    height:250px;
}
.project4{
    background-image: url('img/prj9.gif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width:250px;
    height:250px;
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}


/* About Hero Section */
.about-hero {
    background-image: url('img/hmo2.jpg'); /* Replace with a relevant image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 0;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--zomp-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* About Content Section */
.about-content {
    padding: 50px 0;
    background-color: var(--white);
    text-align: center;
}

.about-content h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--zomp-darker);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.about-content p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 10px;
    color: var(--dark-gray);
    text-align: left;
}

/* Mission and Vision Section */
.mission-vision {
    padding: 50px 0;
    background-color: var(--white);
    border-top: 2px solid var(--mantis);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.mission-item, .vision-item {
    background-color: var(--white);
    padding: 20px;
    border: 1px solid var(--mantis);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover, .vision-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--tangerine);
}

.mission-item h3, .vision-item h3 {
    font-size: 22px;
    color: var(--mantis);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.mission-item p, .vision-item p {
    font-size: 16px;
    color: var(--dark-gray);
}
.pul{
    font-size: 16px;
    color: var(--dark-gray);
    text-decoration:none;
    list-style:disc;
    text-align: left;
}
.pulli{
    font-size: 16px;
    color: var(--dark-gray);
    text-decoration:none;
    list-style:disc;
     text-align: left;
}
/* Services Hero Section */
.services-hero {
    background-image: url('img/hmo5.jpeg'); /* Replace with a relevant image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 0;
}

.services-hero .container {
    position: relative;
    z-index: 1;
}

.services-hero h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--zomp-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Content Section */
.services-content {
    padding: 50px 0;
    background-color: var(--white);
}

.services-content h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--zomp-darker);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.service-item{
    background-color: var(--white);
    padding: 20px;
    border: 1px solid var(--mantis);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--tangerine);
}
.service-item ul {
    list-style: none;
    margin-bottom: 10px;
    text-align: left;
}

.service-item ul li {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 4px;
    position: relative;
    padding-left: 20px;
}

.service-item ul li::before {
    content: '\2713';
  
    color: var(--mantis);
    position: absolute;
    left: 0;
    top: 2px;
}

.service-icon {
    background-size: cover;
    background-repeat: no-repeat;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.asi { background-image: url('img/av0.jpg'); }
.khba { background-image: url('img/knx2.jpg'); }
.uci { background-image: url('img/uci2.jpg'); }
.sid { background-image: url('img/sid1.jpg'); }



/* Call to Action Section */
.cta-section {
    padding: 50px 0;
    background-color: var(--zomp);
    text-align: center;
    color: var(--zomp-darker);
}

.cta-section h2 {
    font-size: 26px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-section .cta-button {
    background-color: var(--persian-red);
    padding: 12px 25px;
    font-size: 16px;
}

.cta-section .cta-button:hover {
    background-color: var(--mantis);
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    /* Services Hero */
    .services-hero {
        padding: 40px 0;
    }

    .services-hero h2 {
        font-size: 28px;
    }

    .services-hero p {
        font-size: 16px;
    }

    /* Services Content */
    .services-content {
        padding: 30px 0;
    }

    .services-content h2 {
        font-size: 22px;
    }


    .service-item ul li {
        font-size: 13px;
    }

    .service-icon {
        width: 100px;
        height: 100px;
    }

    /* CTA Section */
    .cta-section h2 {
        font-size: 22px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .cta-section .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav ul li {
    display: inline;
}

.nav ul li a {
    color: var(--zomp-darker);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: var(--tangerine);
}
    /* Services Hero */
    .services-hero h2 {
        font-size: 24px;
    }

    .services-hero p {
        font-size: 14px;
    }

    /* Services Content */
    .services-content h2 {
        font-size: 20px;
    }



    .service-icon {
        width: 80px;
        height: 80px;
    }

    /* CTA Section */
    .cta-section h2 {
        font-size: 20px;
    }

    .cta-section p {
        font-size: 14px;
    }
}
/* Media Queries for Responsive Design */
/* Media Queries for Responsive Design */

@media (max-width: 600px) {
    /* Header */
    .header .logo {
        height: 50px;
        width: 50px;
    }

    .logo::after {
        font-size: 16px;
        margin-left: 45px;
    }
.nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
}

.nav ul li {
    display: inline;
}

.nav ul li a {
font-size: 14px;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: var(--tangerine);
}
    /* Hero Section */
    .hero {
        padding: 40px 0;
    }
    .hero h2 {
        font-size: 28px;
    }
    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    /* Services Section */
    .services h2 {
        font-size: 20px;
    }
    .asi, .khba, .uci, .sid {
        width: 100px;
        height: 100px;
    }
    /* About Section */
    .about h2 {
        font-size: 20px;
    }
    /* Contact Section */
    .contact h2 {
        font-size: 20px;
    }

    .contact p {
        font-size: 14px;
    }
    /* Footer */
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .footer-nav ul li {
        margin: 5px;
    }
}
/* styles.css */
.cookie-consent {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 30%;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}

.cookie-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h2 {
    margin-top: 0;
}

.cookie-content ul {
    text-align: left;
    margin: 10px 0;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

#accept-cookies {
    background: #28a745;
    color: #fff;
}

#decline-cookies {
    background: #dc3545;
    color: #fff;
}

button:hover {
    opacity: 0.9;
}
.contact-section {
            max-width: 800px;
            margin: 50px auto;
            padding: 20px;
            text-align: center;
        }
        .contact-section h1 {
            color: #333;
        }
        .contact-section p {
            font-size: 1.1em;
            margin: 10px 0;
        }
        .map-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio for responsive map */
            height: 0;
            overflow: hidden;
            margin-top: 20px;
        }
        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 30%;
            height: 30%;
            border: 0;
        }
        @media (max-width: 600px) {
            .contact-section {
                padding: 10px;
            }
            .contact-section h1 {
                font-size: 1.8em;
            }
        }

