:root {
  /* Archify brand colors */
  --blue-archi-lighter: #80DEFE;      
  --blue-archi-light: #006EE5;      
  --blue-archi-dark: #0122ad;      
  --background-blue-light: #F6FAFF; 
  --text-blue-dark: #212e41;     
  --background-white: #ffffff;
  --background-anim: #DBE3F0;    
    

  /* Spacing */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;

  /* Typography */
  --font-family: 'Times New Roman', Times, serif;
}
.example {
    max-width: 1800px;
    margin: 40px auto;
    padding: 0 20px;
}

.example .deployment-card {
    display: flex;
    align-items: top;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.example .image-section {
    width: 68%;
    overflow: hidden;
}

.example .image-section img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.example .content-section {
    width: 32%;
    padding: 3rem 3rem;
    box-sizing: border-box;
}

.example .content-section h2 {
    margin: 0;
    color: var(--blue-archi-dark);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: bold;
    line-height: 1.1;
    text-transform: uppercase;
}

.example .content-section h3 {
    margin: 14px 0 28px;
    color: var(--blue-archi-light);
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: normal;
    text-transform: none;
    line-height: 1.2;
}

.example .content-section p {
    margin: 0;
    color: var(--blue-archi-dark);
    font-size: clamp(1rem, 1.4vw, 1.5rem);
    line-height: 1.7;
    font-weight: 500;
}


@media (max-width: 1400px) {

    .example .content-section {
        width: 40%;
        padding: 2rem 2rem;
    }

    .example .content-section h2 {
    }

    .example .content-section h3 {
    }

    .example .content-section p {
    }


}


@media (max-width: 991px) {

    .example .deployment-card {
        flex-direction: column;
    }

    .example .image-section,
    .example .content-section {
        width: 100%;
    }

    .example .content-section {
        padding: 35px 25px;
    }

    .example .content-section h2 {
    }

    .example .content-section h3 {
    }

    .example .content-section p {
    }
}