/* Base Styles */
:root {
    --primary-color: #7ed957;    /* Green */
    --secondary-color: #006f63;  /* Teal */
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #393536;      /* Dark Gray */
    --text-color: #333;
    --text-light: #777;
    --border-color: #ddd;
    --success-color: #27ae60;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --black: #000000;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 190px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--dark-color);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: var(--secondary-color);
}

.logo-text h1,
.logo-text .tagline,
.slogan,
.logo-text p {
    display: none !important;
}

.logo-text h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.logo-text .tagline {
    font-size: 1rem;
    color: var(--dark-color);
}

.slogan {
    color: var(--secondary-color);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-info p {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

nav {
    background-color: var(--secondary-color);
    width: 100%;
    position: fixed;
    top: 60px !important;
    left: 0;
    right: 0;
    z-index: 999;
    margin-top: 0 !important;
}

nav .container {
    padding: 10px 0;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: var(--white);
    padding: 10px 15px;
    display: block;
    font-weight: 500;
}

nav ul li a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px; /* Adjust based on your image size */
    padding: 0;
    margin-top: 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('IMG-20250331-WA0002.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    /* Add a dark overlay to make text more readable */
    background-color: rgba(0, 0, 0, 0.4) !important;
    background-blend-mode: overlay;
}

.hero .cta-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 200px; /* Position buttons in the middle */
}

/* Mobile responsiveness for hero section */
@media (max-width: 768px) {
    .hero {
        height: 500px;
    }
    
    .hero .cta-buttons {
        flex-direction: column;
        margin-top: 150px;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: white;
}

.service-category {
    margin-bottom: 50px;
}

.service-category h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.service-category h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.service-item h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-item p {
    color: var(--text-light);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-features {
    margin-top: 30px;
}

.about-features li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.about-features i {
    color: var(--success-color);
    margin-right: 10px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Areas Section */
.areas {
    padding: 80px 0;
    background-color: white;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.area-column h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.area-column ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.areas-note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0;
}

.testimonial {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.client-info h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.client-info p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.rating i {
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
}

.contact-item h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-about h3,
.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-about p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-contact a {
    color: #bdc3c7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #bdc3c7;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: #bdc3c7;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Keep logo and contact info side by side */
    header .container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 15px !important;
    }
    
    /* Adjust logo size */
    .logo {
        flex-direction: row !important;
        text-align: left !important;
        margin-bottom: 0 !important;
        width: auto !important;
        max-width: 50% !important;
    }
    
    .logo img {
        height: 40px !important;
        margin: 0 !important;
    }
    
    /* Keep contact info right-aligned */
    .contact-info {
        width: auto !important;
        align-items: flex-end !important;
        text-align: right !important;
        margin-bottom: 0 !important;
        font-size: 0.8rem !important;
        max-width: 50% !important;
    }
    
    .contact-info p {
        justify-content: flex-end !important;
        margin-bottom: 3px !important;
    }
    
    /* Reduce header height */
    header {
        max-height: 60px !important;
    }
    
    /* Adjust body padding */
    body {
        padding-top: 110px !important;
    }
    
    /* Fix navigation position */
    nav {
        top: 60px !important;
    }
    
    /* Fix hero text */
    .hero-text {
        margin-top: 0 !important;
        padding: 15px !important;
        width: 90% !important;
        max-width: 350px !important;
        background-color: rgba(0, 0, 0, 0.7) !important;
    }
    
    .hero-text h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 8px !important;
    }
    
    .hero-text h2 {
        font-size: 1rem !important;
        line-height: 1.3 !important;
    }
    
    /* Fix button layout */
    .hero .cta-buttons {
        flex-direction: column !important;
        width: 90% !important;
        max-width: 280px !important;
        margin-top: 15px !important;
        gap: 10px !important;
    }
    
    .hero .cta-buttons a {
        width: 100% !important;
        margin: 0 !important;
        padding: 10px 15px !important;
        font-size: 0.9rem !important;
        text-align: center !important;
    }
    
    /* Adjust hero height */
    .hero {
        height: auto !important;
        min-height: 500px !important;
    }
    
    /* Make hero text more visible */
    .hero-text {
        display: block !important;
        margin-top: 30px !important;
        margin-bottom: 20px !important;
    }
    
    /* Ensure buttons are properly positioned */
    .hero .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 90% !important;
        max-width: 280px !important;
        margin-top: 20px !important;
        gap: 10px !important;
    }
    
    .hero .cta-buttons a {
        width: 100% !important;
        text-align: center !important;
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
    }

    body {
        padding-top: 110px !important; /* Header height + nav height */
    }

    nav {
        top: auto !important;
        bottom: 0 !important;
    }

    header .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
    }

    .logo {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
        width: 100%;
    }

    .logo-text {
        text-align: center;
    }

    .nav-scroll {
        display: none !important;
    }

    .mobile-menu-toggle {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1001;
    }

    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        flex: 0 0 calc(100% - 20px);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
    }
    
    .logo img {
        height: 50px;
    }

    header.scrolled {
        padding: 5px 0;
    }
    
    header.scrolled .logo-text {
        display: none;
    }
    
    header.scrolled .logo {
        margin-bottom: 5px;
    }
    
    body {
        transition: padding-top 0.3s ease;
    }
    
    body.header-scrolled {
        padding-top: 170px;
    }

    .hero-text {
        display: block !important;
        margin-top: 20px;
    }
    
    .hero-background {
        background-position: center center;
        padding-top: 10px;
    }
    
    .hero .cta-buttons {
        margin-top: 30px;
    }

    .hero-text h1 {
        font-size: 2rem !important;
        margin-bottom: 10px !important;
    }
    
    .hero-text h2 {
        font-size: 1.2rem !important;
    }
    
    .hero {
        height: 550px !important;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero h3 {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
    
    .gallery-item {
        height: 180px;
    }
}

/* Gallery Section Improvements */
.gallery-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.gallery-overlay p {
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Video Showcase */
.video-showcase {
    margin-top: 50px;
    text-align: center;
}

.video-showcase h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.video-showcase video {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-height: 500px;
}

/* Adjust section spacing */
section {
    padding: 60px 0;
    margin-top: 20px;
}

/* Add these styles for the collapsible menu */
.nav-scroll {
    display: none;
}

.nav-scroll.visible {
    display: block;
}

.nav-scroll .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.nav-scroll .logo-small {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-scroll .logo-small img {
    height: 40px;
    width: auto;
}

.nav-scroll .logo-small h1 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

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

/* Form success/error messages */
.success-message {
    text-align: center;
    padding: 30px;
    background-color: rgba(126, 217, 87, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.success-message i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.success-message h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.error-message {
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.1);
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-align: center;
}

/* Add WhatsApp inline icon styles */
.whatsapp-inline {
    display: inline-block;
    margin-left: 8px;
    color: #25d366;
    transition: color 0.3s ease;
}

.whatsapp-inline:hover {
    color: #128C7E;
}

.whatsapp-inline i {
    font-size: 1.2em;
    vertical-align: middle;
}

/* Adjust contact item spacing */
.contact-item p {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    /* Hide the nav-scroll on mobile to avoid duplication */
    .nav-scroll {
        display: none !important;
    }
    
    /* Ensure only one navigation is visible */
    nav {
        position: fixed;
        top: auto;
        bottom: 0;
        background-color: var(--secondary-color);
        width: 100%;
        z-index: 999;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* Adjust body padding */
    body {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    
    /* Ensure the mobile menu toggle is properly positioned */
    .mobile-menu-toggle {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1001;
    }
}

@media (max-width: 480px) {
    /* For very small screens, use hamburger menu */
    .mobile-menu-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    nav {
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    
    nav.active {
        transform: translateY(0);
    }
    
    nav ul li a {
        font-size: 0.8rem;
    }
}

/* Add styles for the download button */
.btn-download {
    background-color: #e74c3c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-download:hover {
    background-color: #c0392b;
}

.btn-download i {
    font-size: 1.2em;
}

/* Adjust the CTA buttons for the new button */
@media (max-width: 768px) {
    .hero .cta-buttons {
        flex-direction: column;
        margin-top: 100px;
        width: 80%;
        max-width: 300px;
    }
}

.price-list-download {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.price-list-download p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .logo-text .tagline,
    .slogan {
        font-size: 0.8rem;
    }
    
    .contact-info {
        font-size: 0.9rem;
    }
    
    body {
        padding-top: 250px;
    }
    
    nav {
        top: 210px;
    }
}

/* Update hero text styles to ensure white text */
.hero-text {
    text-align: center;
    margin-bottom: 30px;
    color: white !important; /* Force white color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: white !important; /* Force white color */
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: white !important; /* Force white color */
}

/* Responsive adjustments for the hero text */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.4rem;
    }
    
    .hero-background {
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
    }
}

/* Stronger color overrides for mobile hero text */
@media (max-width: 768px) {
    .hero-text h1,
    .hero-text h2 {
        color: white !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9) !important;
    }
    
    /* Add a stronger background overlay for mobile */
    .hero-background {
        background-color: rgba(0, 0, 0, 0.5) !important;
    }
    
    /* Add a text background for better readability */
    .hero-text {
        background-color: rgba(0, 0, 0, 0.4);
        padding: 15px;
        border-radius: 5px;
        width: 90%;
        max-width: 500px;
    }
}

/* Emergency fix for mobile text color */
.hero-text h1,
.hero-text h2 {
    color: white !important;
    text-shadow: 2px 2px 8px #000000 !important;
    -webkit-text-fill-color: white !important;
}

/* Add this to your existing mobile media query */
@media (max-width: 768px) {
    .hero-text {
        background-color: rgba(0, 0, 0, 0.6) !important;
        padding: 20px !important;
        border-radius: 8px !important;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.5) !important;
    }
    
    .hero-text h1,
    .hero-text h2 {
        color: #ffffff !important;
        text-shadow: 2px 2px 8px #000000 !important;
        -webkit-text-fill-color: #ffffff !important;
    }
    
    /* Force white text with multiple properties */
    .hero-text * {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
    }
}

/* Additional fixes for very small screens */
@media (max-width: 480px) {
    .hero {
        height: 500px !important;
    }
    
    .hero-text {
        width: 95% !important;
        padding: 15px !important;
    }
    
    .hero .cta-buttons {
        margin-top: 15px !important;
    }
}

/* Extra small screens */
@media (max-width: 375px) {
    .hero-text h1 {
        font-size: 1.5rem !important;
    }
    
    .hero-text h2 {
        font-size: 0.9rem !important;
    }
    
    .hero .cta-buttons a {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
    }
}

/* Further adjustments for very small screens */
@media (max-width: 480px) {
    .contact-info {
        font-size: 0.7rem !important;
    }
    
    .contact-info i {
        font-size: 0.9rem !important;
    }
    
    .logo img {
        height: 35px !important;
    }
}