/* ===================================
   HERO SECTION STYLES
   =================================== */
.aa-hero {
    background-color: #f7f5f0;
    padding: 80px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.aa-hero__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Headline */
.aa-hero__headline {
    margin-bottom: 30px;
}

.aa-hero__title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #2c2c2c;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.aa-hero__highlight {
    color: #e74c3c;
    font-weight: 400;
}

/* Description */
.aa-hero__description {
    margin-bottom: 40px;
}

.aa-hero__text {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Call to Action */
.aa-hero__cta {
    margin-bottom: 50px;
}

.aa-hero__button {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.aa-hero__button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Trust Indicators */
.aa-hero__trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

.aa-hero__badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.aa-hero__badge-icon {
    color: #2c2c2c;
    display: flex;
    align-items: center;
}

.aa-hero__badge-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.aa-hero__badge-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.2;
}

.aa-hero__badge-subtitle {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.2;
}

.aa-hero__stat {
    background-color: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    text-align: center;
}

.aa-hero__stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    line-height: 1.2;
}

.aa-hero__stat-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.2;
}

/* Brand Introduction */
.aa-hero__brands {
    margin-top: 20px;
}

.aa-hero__brands-text {
    font-size: 1rem;
    color: #999;
    font-weight: 400;
}

/* ===================================
   LOGO MARQUEE STYLES
   =================================== */
.aa-hero__marquee {
    margin-top: 30px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background: linear-gradient(
        90deg,
        rgba(247, 245, 240, 1) 0%,
        rgba(247, 245, 240, 0) 10%,
        rgba(247, 245, 240, 0) 90%,
        rgba(247, 245, 240, 1) 100%
    );
}

.aa-hero__marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marqueeScroll 30s linear infinite;
    width: fit-content;
}

.aa-hero__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 10px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.aa-hero__logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.aa-hero__logo-img {
    max-width: 120px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

.aa-hero__logo:hover .aa-hero__logo-img {
    filter: grayscale(0%) opacity(1);
}

/* Marquee Animation */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.aa-hero__marquee:hover .aa-hero__marquee-track {
    animation-play-state: paused;
}

/* ===================================
   MARQUEE RESPONSIVE DESIGN
   =================================== */

/* Tablets */
@media (max-width: 768px) {
    .aa-hero__marquee-track {
        gap: 40px;
        animation-duration: 25s;
    }

    .aa-hero__logo {
        height: 50px;
        padding: 8px 15px;
    }

    .aa-hero__logo-img {
        max-width: 100px;
        max-height: 32px;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .aa-hero__marquee-track {
        gap: 30px;
        animation-duration: 20s;
    }

    .aa-hero__logo {
        height: 45px;
        padding: 6px 12px;
    }

    .aa-hero__logo-img {
        max-width: 80px;
        max-height: 28px;
    }
}

/* ===================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   =================================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .aa-hero__title {
        font-size: 3rem;
    }

    .aa-hero__text {
        font-size: 1.2rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .aa-hero {
        padding: 60px 0 40px;
    }

    .aa-hero__title {
        font-size: 2.5rem;
    }

    .aa-hero__text {
        font-size: 1.1rem;
    }

    .aa-hero__trust {
        flex-direction: column;
        gap: 20px;
    }

    .aa-hero__badge,
    .aa-hero__stat {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .aa-hero {
        padding: 40px 0 30px;
    }

    .aa-hero__title {
        font-size: 2rem;
    }

    .aa-hero__text {
        font-size: 1rem;
    }

    .aa-hero__button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .aa-hero__badge {
        padding: 12px 20px;
    }

    .aa-hero__stat {
        padding: 12px 20px;
    }

    .aa-hero__stat-number {
        font-size: 1.5rem;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.aa-hero__title {
    animation: fadeInUp 0.8s ease-out;
}

.aa-hero__text {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.aa-hero__button {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.aa-hero__trust {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.aa-hero__brands {
    animation: fadeIn 0.8s ease-out 0.8s both;
}

/* Pulse animation for CTA button */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(231, 76, 60, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    }
}

.aa-hero__button {
    animation: fadeInUp 0.8s ease-out 0.4s both, pulse 2s infinite 1s;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.aa-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
.aa-hero__button:focus {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

/* Hero section */
/* .hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url("https://images.pexels.com/photos/7864412/pexels-photo-7864412.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    padding: 0 5%;
    max-width: 650px;
    color: white;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.primary {
    background-color: #1a73e8;
    color: white;
}

.primary:hover {
    background-color: #1557b0;
}

.secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* WhatsApp icon */
.whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.whatsapp-icon {
    position: relative;
    width: 30px;
    height: 30px;
}

.whatsapp-icon:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #25d366;
}

.whatsapp-icon:after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 8px;
    left: 8px;
    width: 14px;
    height: 14px;
    box-sizing: border-box;
    border: 3px solid white;
    border-radius: 50%;
    border-top-right-radius: 0;
    transform: rotate(-45deg);
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
    }

    h1 {
        font-size: 2rem;
    }

    .buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
    }
}
*/ .about-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    max-width: 450px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #444;
}

.underline {
    width: 100px;
    height: 3px;
    background-color: #1a73e8;
    margin-bottom: 20px;
}

p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.background-squares {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.background-squares::before,
.background-squares::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 2px;
}

.background-squares::before {
    top: 20px;
    left: 20px;
    box-shadow: 40px 40px 0 #e0e0e0, 80px 0 0 #e0e0e0, 0 80px 0 #e0e0e0;
}

.background-squares::after {
    bottom: 20px;
    right: 20px;
    box-shadow: -40px -40px 0 #e0e0e0, -80px 0 0 #e0e0e0, 0 -80px 0 #e0e0e0;
}

/* Responsive styles */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .underline {
        margin: 0 auto 20px;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 50px 0;
    }

    h2 {
        font-size: 2rem;
    }

    .about-image {
        max-width: 100%;
    }
}

.service-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-container {
    width: 100%;
}

.service-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.service-highlight {
    color: #1a73e8;
}

.service-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.service-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.service-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-category {
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.service-icon {
    color: #1a73e8;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.5;
}

.service-details {
    flex: 1;
}

.service-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.service-description {
    font-size: 0.9rem;
    color: #666;
}

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

.service-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .service-content {
        flex-direction: column;
    }

    .service-image-container {
        order: -1;
        margin-bottom: 40px;
    }

    .service-image {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .service-section {
        padding: 60px 15px;
    }

    .service-title {
        font-size: 2rem;
    }

    .service-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .service-item {
        flex-direction: column;
        gap: 5px;
    }

    .service-icon {
        margin-bottom: 5px;
    }
}

.benefits-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-container {
    width: 100%;
}

.benefits-heading {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 60px;
}

.benefits-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #e8f3ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* CSS-only icons */
.benefit-icon-time {
    position: relative;
}

.benefit-icon-time::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #1a73e8;
    border-radius: 50%;
}

.benefit-icon-time::after {
    content: "$";
    position: absolute;
    color: #ffc107;
    font-size: 20px;
    font-weight: bold;
    right: -5px;
    bottom: -5px;
}

.benefit-icon-integration {
    position: relative;
}

.benefit-icon-integration::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #1a73e8;
    border-radius: 50%;
    left: -5px;
}

.benefit-icon-integration::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #ff9800;
    border-radius: 50%;
    right: -5px;
    background: repeating-linear-gradient(
        45deg,
        #ff9800,
        #ff9800 2px,
        transparent 2px,
        transparent 4px
    );
}

.benefit-icon-growth {
    position: relative;
    overflow: visible;
}

.benefit-icon-growth::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 20px;
    background: linear-gradient(
        to top,
        #4caf50 0%,
        #4caf50 20%,
        transparent 20%
    );
    bottom: 0;
    left: -10px;
}

.benefit-icon-growth::after {
    content: "";
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid #4caf50;
    transform: rotate(45deg);
    right: -5px;
    top: 0;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.benefit-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.benefit-divider {
    width: 50px;
    height: 3px;
    background-color: #1a73e8;
    margin-top: auto;
}

/* Responsive styles */
@media (max-width: 900px) {
    .benefits-cards {
        flex-direction: column;
        align-items: center;
    }

    .benefit-card {
        max-width: 450px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .benefits-heading {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .benefit-card {
        padding: 25px 20px;
    }
}

.automation-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
}

.automation-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.automation-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 40px;
    text-align: center;
}

.automation-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
}

.automation-tag {
    padding: 8px 16px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #555;
    transition: all 0.3s ease;
    cursor: pointer;
}

.automation-tag:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Responsive styles */
@media (max-width: 768px) {
    .automation-heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .automation-tags {
        gap: 10px;
    }

    .automation-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .automation-section {
        padding: 40px 15px;
    }

    .automation-heading {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .automation-tags {
        flex-direction: column;
        align-items: center;
    }

    .automation-tag {
        width: 100%;
        text-align: center;
    }
}

.process-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-container {
    width: 100%;
}

.process-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.process-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0066ff;
    margin: 0 20px;
    text-align: center;
}

.process-line {
    height: 1px;
    background-color: #0066ff;
    flex-grow: 1;
    max-width: 200px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    min-width: 200px;
    margin-bottom: 40px;
}

.process-icon-container {
    width: 80px;
    height: 80px;
    background: radial-gradient(
        circle,
        rgba(0, 102, 255, 0.6) 0%,
        rgba(0, 102, 255, 0) 70%
    );
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.process-icon {
    width: 50px;
    height: 50px;
    background-color: #0066ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    position: relative;
}

/* CSS-only icons */
.process-icon::before,
.process-icon::after {
    content: "";
    position: absolute;
    background-color: white;
}

.process-icon-discovery::before {
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-radius: 50%;
    top: 12px;
    left: 12px;
}

.process-icon-discovery::after {
    width: 8px;
    height: 2px;
    transform: rotate(45deg);
    bottom: 14px;
    right: 14px;
}

.process-icon-strategy::before {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    top: 13px;
    left: 13px;
}

.process-icon-strategy::after {
    width: 2px;
    height: 10px;
    top: 18px;
    left: 22px;
}

.process-icon-integration::before {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    top: 13px;
    left: 13px;
}

.process-icon-integration::after {
    width: 10px;
    height: 10px;
    border: 2px solid white;
    border-radius: 50%;
    top: 18px;
    left: 18px;
}

.process-icon-testing::before {
    width: 16px;
    height: 22px;
    border: 2px solid white;
    border-radius: 2px;
    top: 12px;
    left: 15px;
}

.process-icon-testing::after {
    width: 10px;
    height: 2px;
    top: 20px;
    left: 18px;
    box-shadow: 0 5px 0 white, 0 10px 0 white;
}

.process-icon-support::before {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    top: 8px;
    left: 8px;
}

.process-icon-support::after {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    top: 18px;
    left: 18px;
}

.process-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.1);
    width: 100%;
    max-width: 200px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.process-step-title {
    color: #0066ff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-description {
    font-size: 0.9rem;
    color: #555;
}

.process-connector {
    width: 100%;
    height: 2px;
    border-top: 2px dashed #0066ff;
    position: absolute;
    top: 40px;
    left: 50%;
    z-index: 0;
}

/* Responsive styles */
@media (max-width: 1100px) {
    .process-steps {
        justify-content: center;
        gap: 40px;
    }

    .process-step {
        flex: 0 0 calc(33.333% - 40px);
    }

    .process-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-step {
        flex: 0 0 calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 60px 15px;
    }

    .process-header {
        margin-bottom: 40px;
    }

    .process-line {
        max-width: 80px;
    }

    .process-step {
        flex: 0 0 100%;
    }

    .process-card {
        max-width: 280px;
    }
}

.blog-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-container {
    width: 100%;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    display: inline-block;
}

.blog-heading-line {
    width: 100px;
    height: 1px;
    background-color: #ccc;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.blog-button {
    display: inline-block;
    background-color: #0066ff;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.blog-button:hover {
    background-color: #0052cc;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-footer-line {
    height: 1px;
    background-color: #ccc;
    flex-grow: 1;
    max-width: 200px;
}

.blog-view-all {
    color: #0066ff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin: 0 20px;
    transition: color 0.3s ease;
}

.blog-view-all:hover {
    color: #0052cc;
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
    .blog-section {
        padding: 60px 15px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-footer-line {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .blog-heading {
        font-size: 1.8rem;
    }

    .blog-content {
        padding: 15px;
    }
}
