:root {
    /* @tweakable The size of the icons in the advantages section */
    --advantage-icon-size: 35px;
    /* @tweakable The size of the icons in the services section */
    --service-icon-size: 50px;
    /* @tweakable The maximum width for large illustrative images on desktop (used in Hero, About, Process sections) */
    /* @tweakable Increase the width of main illustrative images on desktop */
    --main-illustrative-image-max-width-desktop: 40%; /* Increased from 30% */
    /* @tweakable The maximum width for large illustrative images on mobile (up to 768px) */
    /* @tweakable Increase the width of main illustrative images on mobile */
    --illustrative-image-max-width-mobile: 55%; /* Increased from 45% */
    /* @tweakable The maximum width for large illustrative images on small mobile (up to 480px) */
    /* @tweakable Increase the width of main illustrative images on small mobile */
    --illustrative-image-max-width-small-mobile: 70%; /* Increased from 60% */
    /* @tweakable The height of the logo in the header */
    /* @tweakable Increase the height of the logo */
    --logo-height: 60px; /* Increased from 50px */

    /* Color Palette */
    /* @tweakable Primary brand color, used for headings, buttons, and links */
    --color-primary: #007bff;
    /* @tweakable Secondary color, used for secondary buttons and accents */
    --color-secondary: #6c757d;
    /* @tweakable Text color for body content */
    --color-text-body: #333;
    /* @tweakable Text color for darker elements or headings */
    --color-text-heading: #007bff;
    /* @tweakable Background color for light sections */
    --color-background-light: #f8f9fa;
    /* @tweakable Background color for main sections */
    --color-background-main: #fff;
    /* @tweakable Border color */
    --color-border: #ddd;
    /* @tweakable Shadow color for elements like header and cards */
    --color-shadow: rgba(0, 0, 0, 0.1);

    /* Typography */
    /* @tweakable Font family for the body */
    --font-family-body: 'Inter', sans-serif;
    /* @tweakable Font family for headings */
    --font-family-heading: 'Inter', sans-serif;

    /* Spacing */
    /* @tweakable Padding for sections */
    --section-padding: 80px 0;
    /* @tweakable Padding for containers */
    --container-padding: 0 20px;

    /* Layout */
    /* @tweakable Maximum width for the main content container */
    --container-max-width: 1200px;
    /* @tweakable Gap between grid items in services and testimonials */
    --grid-gap: 30px;
    /* @tweakable Gap between advantage items */
    --advantage-gap: 20px;

    /* Elements */
    /* @tweakable Padding for buttons */
    --button-padding: 10px 20px;
    /* @tweakable Border radius for buttons */
    --button-border-radius: 5px;
    /* @tweakable Width of the floating WhatsApp button when hovered */
    --whatsapp-float-hover-width: 250px;
    /* @tweakable Size of the WhatsApp icon in the floating button */
    --whatsapp-float-icon-size: 50px;
}

/* General Styles */
body {
    font-family: var(--font-family-body);
    margin: 0;
    padding: 0;
    color: var(--color-text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--color-background-main);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--color-background-light);
}

h1, h2, h3 {
    font-family: var(--font-family-heading);
    color: var(--color-text-heading);
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.5em;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

p {
    margin-bottom: 20px;
}

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

a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Header */
.site-header {
    background-color: var(--color-background-main);
    box-shadow: 0 2px 4px var(--color-shadow);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .logo img {
    height: var(--logo-height);
    max-width: 100%;
    display: block;
}

.site-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.site-nav a {
    color: var(--color-text-body);
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.site-nav a:hover {
    color: var(--color-primary);
}

/* Hero Section */
.hero-section {
    background-color: #f8f9fa;
    padding: var(--section-padding);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: column;
    text-align: center;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    margin-top: 0;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: var(--button-padding);
    border-radius: var(--button-border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    border: 1px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    display: block;
    max-width: var(--main-illustrative-image-max-width-desktop);
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--color-shadow);
}

/* About Section */
.about-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: column;
    text-align: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    text-align: center;
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.about-content ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.about-content ul li::before {
    content: '•';
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-image {
     flex: 1;
     display: flex;
     justify-content: center;
     align-items: center;
}

.about-image img {
    display: block;
    max-width: var(--main-illustrative-image-max-width-desktop);
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--color-shadow);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--grid-gap);
    margin-top: 40px;
}

.service-item {
    background-color: var(--color-background-main);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px var(--color-shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px var(--color-shadow);
}

.service-item img {
    width: var(--service-icon-size);
    height: auto;
    margin-bottom: 15px;
}

.service-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.service-item p {
    margin-bottom: 0;
    font-size: 0.95em;
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--advantage-gap);
    margin-top: 40px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: var(--color-background-main);
    border-radius: 8px;
    box-shadow: 0 2px 5px var(--color-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px var(--color-shadow);
}

.advantage-item img {
    width: var(--advantage-icon-size);
    height: auto;
    flex-shrink: 0;
    margin-top: 5px;
}

.advantage-item h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.advantage-item p {
    margin-bottom: 0;
    font-size: 0.9em;
}

/* Process Section */
.process-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.process-step {
    flex: 1 1 250px;
    text-align: center;
    padding: 20px;
    background-color: var(--color-background-main);
    border-radius: 8px;
    box-shadow: 0 2px 5px var(--color-shadow);
    position: relative;
}

.process-step .step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.process-step h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.process-image {
    text-align: center;
}

.process-image img {
    max-width: var(--main-illustrative-image-max-width-desktop);
    height: auto;
    display: inline-block;
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--color-shadow);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--grid-gap);
    margin-top: 40px;
}

.testimonial-item {
    background-color: var(--color-background-main);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px var(--color-shadow);
    text-align: center;
    font-style: italic;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-item p {
    margin-bottom: 20px;
    font-size: 1em;
}

.testimonial-author {
    margin-top: auto;
    font-style: normal;
    font-weight: 600;
    color: #555;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--grid-gap);
    margin-top: 40px;
}

.blog-post-preview {
    background-color: var(--color-background-main);
    border-radius: 8px;
    box-shadow: 0 2px 5px var(--color-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-post-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-post-preview h3 {
    padding: 15px 20px 0;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.blog-post-preview p {
    padding: 0 20px;
    margin-bottom: 15px;
    font-size: 0.9em;
    flex-grow: 1;
}

.blog-post-preview .read-more {
    display: inline-block;
    padding: 0 20px 20px;
    font-weight: 600;
    color: var(--color-primary);
}

.blog-post-preview .read-more:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--grid-gap);
    margin-top: 40px;
}

.contact-form {
    background-color: var(--color-background-main);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px var(--color-shadow);
}

.contact-form h3, .contact-info h3 {
    margin-top: 0;
    color: var(--color-text-heading);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--button-border-radius);
    font-family: var(--font-family-body);
    font-size: 1em;
    box-sizing: border-box;
}

.contact-info {
     background-color: var(--color-background-main);
     padding: 30px;
     border-radius: 8px;
     box-shadow: 0 2px 5px var(--color-shadow);
     display: flex;
     flex-direction: column;
     justify-content: space-between;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-info a {
    color: var(--color-text-body);
}

.contact-info a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.social-links {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links img {
    width: 28px;
    height: auto;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.1);
}

.google-map {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px var(--color-shadow);
}

.google-map iframe {
    display: block;
}

/* Footer */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
}

.site-footer p {
    margin: 5px 0;
}

.site-footer a {
    color: #fff;
    text-decoration: underline;
}

.site-footer a:hover {
    text-decoration: none;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 16px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 5px;
    transition: width 0.3s ease-in-out;
    overflow: hidden;
    text-decoration: none;
    width: var(--whatsapp-float-icon-size);
}

.whatsapp-float:hover {
    width: var(--whatsapp-float-hover-width);
}

.whatsapp-float img {
    width: var(--whatsapp-float-icon-size);
    height: var(--whatsapp-float-icon-size);
    margin-right: 5px;
    flex-shrink: 0;
}

.whatsapp-float span {
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease-in-out 0.1s;
}

.whatsapp-float:hover span {
    opacity: 1;
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.3em;
    }

    .site-header .container,
    .hero-section .container,
    .about-section .container {
        flex-direction: column;
        text-align: center;
    }

    .site-nav ul {
        justify-content: center;
        margin-top: 10px;
    }

    .hero-content, .about-content {
        flex: none;
        max-width: 100%;
    }

    .hero-image img,
    .about-image img,
    .process-image img {
        max-width: var(--illustrative-image-max-width-mobile);
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid,
    .advantages-grid,
    .testimonials-grid,
    .blog-grid,
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .process-flow {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        flex: none;
        width: 80%;
        max-width: 400px;
    }

    .contact-info .google-map {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    :root {
       --section-padding: 60px 0;
       --whatsapp-float-icon-size: 45px;
       --whatsapp-float-hover-width: 200px;
    }

    .hero-image img,
    .about-image img,
    .process-image img {
        max-width: var(--illustrative-image-max-width-small-mobile);
    }

    .site-header {
        padding: 8px 0;
    }

    .site-header .logo img {
         height: calc(var(--logo-height) * 0.8);
    }

    .site-nav ul {
        gap: 15px;
    }

    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.6em;
    }

    h3 {
        font-size: 1.2em;
    }

    .section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .service-item,
    .advantage-item,
    .testimonial-item,
    .blog-post-preview,
    .contact-form,
    .contact-info {
        padding: 20px;
    }

    .services-grid,
    .advantages-grid,
    .testimonials-grid,
    .blog-grid,
    .contact-grid {
        gap: 20px;
    }

    .advantage-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .advantage-item img {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px 0;
        --container-padding: 0 15px;
        --button-padding: 8px 15px;
        --whatsapp-float-icon-size: 40px;
        --whatsapp-float-hover-width: 180px;
    }

    h1 {
        font-size: 1.6em;
    }

    h2 {
        font-size: 1.4em;
    }

    .site-header .logo img {
         height: calc(var(--logo-height) * 0.7);
    }

    .site-nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        margin-top: 15px;
    }

    .hero-image img,
    .about-image img,
    .process-image img {
        max-width: var(--illustrative-image-max-width-small-mobile);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .services-grid,
    .testimonials-grid,
    .blog-grid,
    .contact-grid {
         grid-template-columns: 1fr;
    }

    .advantage-item {
        width: 100%;
        box-sizing: border-box;
    }

    .process-step {
        width: 100%;
        box-sizing: border-box;
    }

    .blog-post-preview img {
        height: 150px;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 3px;
    }

    .whatsapp-float img {
        width: var(--whatsapp-float-icon-size);
        height: var(--whatsapp-float-icon-size);
    }
}