@font-face {
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 100;
    src: url(./tipografias/NotoSans-Thin.ttf);
}

@font-face {
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 300;
    src: url(./tipografias/NotoSans-Light.ttf);
}

@font-face {
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 400;
    src: url(tipografias/NotoSans-Regular.ttf);
}

@font-face {
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 500;
    src: url(tipografias/NotoSans-Medium.ttf);
}

@font-face {
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 600;
    src: url(tipografias/NotoSans-SemiBold.ttf);
}

@font-face {
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 700;
    src: url(tipografias/NotoSans-Bold.ttf);
}

@font-face {
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 800;
    src: url(tipografias/NotoSans-ExtraBold.ttf);
}

@font-face {
    font-family: "NotoSans";
    font-style: normal;
    font-weight: 900;
    src: url(tipografias/NotoSans-Black.ttf);
}

body {
    margin: 0;
    font-family: "NotoSans";
}

/* HEADER GUARDIA CIVIL */
.gc-header {
    background-color: #165534;
    /* verde GC */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.gc-logo img {
    width: 250px;
    height: auto;
}

.gc-header-text {
    text-align: right;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.4;
    color: #ffd600;
    /* dorado GC */
    text-transform: uppercase;
}

/* HERO GUARDIA CIVIL */
.gc-hero-block {
    display: flex;
    width: 100%;
    min-height: 500px;
}

.gc-hero-text {
    width: 100%;
    background: url("imagenes/fondo-hero-gc.png") no-repeat center center;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
    text-align: center;
}

.gc-hero-text h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.gc-hero-text h3 {
    font-size: 24px;
    color: #ffd600;
    font-weight: bold;
    margin: 20px 0;
}

.gc-hero-text .subtext {
    font-size: 18px;
    margin-top: 15px;
    font-style: italic;
}

.gc-hero-image {
    flex: 0 0 40%;
    background: url("imagenes/helicoptero-gc.png") no-repeat center center;
    background-size: cover;
}

/* BLOQUE SEPARADOR GUARDIA CIVIL */
.gc-info-block {
    background-color: #007c66;
    /* verde agua GC */
    padding: 40px 20px;
}

.gc-info-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.gc-info-box {
    background-color: #fff;
    border: 3px solid #ffd600;
    border-radius: 30px;
    padding: 20px 40px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.4;
    color: #165534;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-style:italic;
}

.gc-info-logo img {
    height: 120px;
    width: auto;
}

/* BLOQUE METODO OPOPRIME AJUSTADO */
.gc-metodo-block {
    background-image: url("imagenes/fondo-metodo.svg");
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    align-items: flex-end;
    /* alinear la chica abajo */
    min-height: 500px;
    /* altura mínima coherente */
    padding-top: 20px;
}

.gc-metodo-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* alinear contenidos al fondo */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.gc-metodo-image {
    flex: 0 0 35%;
    display: flex;
    align-items: flex-end;
    /* la imagen toca el fondo */
}

.gc-metodo-image img {
    width: 50%;
    max-height: 50%;
    height: auto;
    align-self: flex-end;
}

.gc-metodo-text {
    flex: 0 0 60%;
    font-size: 18px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 20px;
    /* ajuste fino */
}

.gc-metodo-text .highlight {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.gc-metodo-text .yellow {
    color: #ffd600;
    font-weight: bold;
    margin: 15px 0;
}

.gc-metodo-text ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.gc-metodo-text ul li {
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
}

.gc-metodo-text ul li::before {
    content: "•";
    color: #ffd600;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* SEPARADOR */
.separator-two {
    background-color: #fff;
    padding: 40px 20px;
}

.separator-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.separator-content p {
    color: #154734;
    /* Verde Guardia Civil */
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.btn-red {
    background-color: #e42320;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
    transition: background 0.3s ease;
}

.btn-red:hover {
    background-color: #c51d1b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .separator-content {
        flex-direction: column;
        gap: 20px;
    }

    .separator-content p {
        font-size: 18px;
    }

    .btn-red {
        width: 80%;
        max-width: 300px;
    }
}

/* TÍTULO REQUISITOS */
.requisitos-title {
    background-color: #e8f0fa;
    padding: 30px 20px;
    text-align: center;
}

.requisitos-title h2 {
    font-size: 24px;
    font-weight: bold;
    color: #154734;
    /* Verde Guardia Civil */
    text-transform: uppercase;
    margin: 0;
}

/* BLOQUE PRINCIPAL */
.requisitos-block {
    background: url("imagenes/fondo-bloque3.svg") no-repeat center center;
    background-size: cover;
    padding: 40px 20px;
    color: #fff;
}

.requisitos-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.requisitos-image {
    flex: 0 0 40%;
    text-align: center;
}

.requisitos-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.requisitos-text {
    flex: 0 0 60%;
}

.requisitos-text .highlight {
    color: #ffd600;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 18px;
}

.requisitos-text ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.requisitos-text ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.requisitos-text ul li::before {
    content: "•";
    color: #ffd600;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .requisitos-content {
        flex-direction: column;
        text-align: left;
        gap: 20px;
    }

    .requisitos-image,
    .requisitos-text {
        flex: 0 0 100%;
    }

    .requisitos-text .highlight {
        font-size: 16px;
    }

    .requisitos-text ul li {
        font-size: 16px;
    }
}

/* TÍTULO REQUISITOS */
.requisitos-title {
    background-color: #1e6a63;
    /* Verde más intenso */
    padding: 30px 20px;
    text-align: center;
}

.requisitos-title h2 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

/* BLOQUE PRINCIPAL */
.requisitos-block {
    background: #f7f7f7;
    padding: 40px 20px;
}

.requisitos-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.requisitos-text {
    flex: 0 0 60%;
    color: #222;
    font-size: 16px;
    line-height: 1.6;
}

.requisitos-text ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0 0;
}

.requisitos-text ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.requisitos-text ul li::before {
    content: "‡";
    color: #1e6a63;
    /* Verde Guardia Civil */
    font-weight: bold;
    position: absolute;
    left: 0;
}

.requisitos-image {
    flex: 0 0 35%;
    text-align: right;
}

.requisitos-image img {
    max-width: 100%;
    height: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .requisitos-content {
        flex-direction: column;
        text-align: left;
    }

    .requisitos-text {
        flex: 0 0 100%;
        font-size: 14px;
    }

    .requisitos-image {
        flex: 0 0 100%;
        text-align: center;
    }

    .requisitos-image img {
        max-width: 250px;
        width: 100%;
    }
}

/* TÍTULO LABORES */
.labores-title {
    background-color: #1e6a63;
    /* Verde Guardia Civil */
    padding: 30px 20px;
    text-align: center;
}

.labores-title h2 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

/* BLOQUE PRINCIPAL */
.labores-block {
    background-color: #2a5236;
    padding: 40px 20px;

    * {
        color: white;
    }
}

.labores-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

.labores-image {
    flex: 0 0 40%;
    text-align: left;
}

.labores-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.labores-text {
    flex: 0 0 60%;
    color: #222;
    font-size: 14px;
    line-height: 1.6;
}

.labores-text ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.labores-text ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.labores-text ul li::before {
    content: "‡";
    color: #1e6a63;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .labores-content {
        flex-direction: column;
        text-align: left;
    }

    .labores-image {
        flex: 0 0 100%;
        text-align: center;
    }

    .labores-image img {
        max-width: 250px;
    }

    .labores-text {
        flex: 0 0 100%;
        font-size: 14px;
    }

    h2 {
        font-size: 22px !important;
    }

    h3 {
        font-size: 18px !important;
    }

    li {
        font-size: 14px !important;
    }

    p {
        font-size: 14px !important;
    }

    a {
        font-size: 14px !important;
    }
}

/* BLOQUE DEL BOTÓN */
.cta-block {
    background-color: #fff;
    background-image: url("imagenes/escudo-guardia-civil.svg");
    /* Escudo de la Guardia Civil */
    background-repeat: no-repeat;
    background-size: 150px;
    background-attachment: fixed;
    background-position: 90% 50%;
    text-align: center;
    padding: 40px 20px;
}

/* BLOQUE DEL TÍTULO */
.proceso-block {
    background-color: #16706d;
    /* verde Guardia Civil */
    background-image: url("imagenes/escudo-gc-dorado.svg");
    /* Escudo dorado */
    background-repeat: no-repeat;
    background-size: 150px;
    background-attachment: fixed;
    background-position: 90% 50%;
    text-align: center;
    padding: 60px 20px;
}

.proceso-block h2 {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

/* Botón rojo */
.btn-red {
    background-color: #e42320;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-red:hover {
    background-color: #c51d1b;
}

/* Responsive */
@media (max-width: 768px) {

    .cta-block,
    .proceso-block {
        background-position: center bottom;
        background-size: 100px;
    }

    .btn-red {
        width: 80%;
        max-width: 280px;
        font-size: 16px;
        padding: 12px 25px;
    }

    .proceso-block h2 {
        font-size: 18px;
    }
}

.pruebas-block {
    background-color: #2a5236;
    color: white;
    padding: 0px 20px;
}

.pruebas-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pruebas-texto {
    flex: 0 0 60%;
}

.pruebas-texto h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.pruebas-texto ul {
    list-style: none;
    padding-left: 0;
}

.pruebas-texto ul li {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.pruebas-texto ul li::before {
    content: "•";
    color: #ffd600;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.pruebas-texto strong {
    color: #fff;
}

.pruebas-image {
    width: 100%;
    text-align: center;
}

.pruebas-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .pruebas-content {
        flex-direction: column-reverse;
        text-align: left;
    }

    .pruebas-texto {
        flex: 0 0 100%;
    }

    .pruebas-texto h3 {
        font-size: 18px;
        text-align: center;
    }

    .pruebas-texto ul li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .pruebas-image {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .pruebas-image img {
        max-width: 250px;
    }
}

.final-separator {
    background-color: #fff;
    padding: 40px 20px;
}

.final-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.final-content p {
    color: #13452c;
    /* Verde Guardia Civil */
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

.logo-opoprime img {
    height: 100px;
    width: auto;
}

.btn-red {
    background-color: #e42320;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-red:hover {
    background-color: #c51d1b;
}

/* Responsive */
@media (max-width: 992px) {
    .final-content {
        flex-direction: column;
        text-align: center;
    }

    .final-content p {
        font-size: 18px;
    }

    .btn-red {
        font-size: 16px;
        padding: 12px 25px;
        width: 80%;
        max-width: 300px;
    }

    .logo-opoprime img {
        height: 80px;
    }
}

.footer {
    background: url("imagenes/fondo-footer.svg") no-repeat top center;
    background-size: cover;
    padding: 30px 20px;
    color: #0d1c3d;

    * {
        color: white;
    }

    a {
        color: white;
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Izquierda */
.footer-left {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-left a {
    text-decoration: none;
    color: #0d1c3d;
    font-weight: 600;
}

.footer-icon {
    font-size: 18px;
    color: #0d1c3d;
}

/* Centro */
.footer-center {
    font-size: 14px;
    text-align: center;
    flex: 1;
}

.footer-center a {
    text-decoration: none;
    color: #0d1c3d;
    font-weight: 600;
    margin: 0 5px;
}

.footer-center a:hover {
    text-decoration: underline;
}

/* Derecha */
.footer-right img {
    height: 40px;
    width: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        justify-content: center;
    }

    .footer-right img {
        height: 30px;
        width: auto;
    }
}

/* HEADER RESPONSIVE GUARDIA CIVIL */
@media (max-width: 992px) {
    .gc-header {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }

    .gc-logo img {
        width: 200px;
        /* más compacto en tablet */
        margin-bottom: 10px;
    }

    .gc-header-text {
        font-size: 18px;
        line-height: 1.3;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .gc-logo img {
        width: 160px;
        /* aún más pequeño en móvil */
    }

    .gc-header-text {
        font-size: 16px;
        line-height: 1.2;
    }
}

/* HERO FIX RESPONSIVE */
@media (max-width: 992px) {
    .gc-hero-block {
        flex-direction: column;
        min-height: auto;
    }

    .gc-hero-text {
        order: 1;
        padding: 20px;
        /* antes 40px 60px */
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        /* asegura que padding no sume ancho extra */
    }

    .gc-hero-image {
        order: 2;
        flex: 0 0 auto;
        width: 100%;
        height: 250px;
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 600px) {
    .gc-hero-text {
        padding: 15px;
    }
}

/* SEPARADOR GUARDIA CIVIL RESPONSIVE */
@media (max-width: 992px) {
    .gc-info-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .gc-info-box {
        font-size: 16px;
        /* un poco más pequeño */
        padding: 15px 20px;
    }

    .gc-info-logo img {
        height: 90px;
        /* antes 120px */
    }
}

@media (max-width: 600px) {
    .gc-info-box {
        font-size: 14px;
        padding: 12px 15px;
    }

    .gc-info-logo img {
        height: 70px;
    }
}

@media (max-width: 992px) {
    .gc-metodo-content {
        display: grid;
        grid-template-rows: auto auto;
        grid-template-columns: 1fr;
        text-align: left;
        gap: 15px;
    }

    .gc-metodo-image {
        grid-row: 2/3;
        flex: 0 0 auto;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .gc-metodo-image img {
        max-width: 250px;
        height: auto;
    }

    .gc-metodo-text {
        grid-row: 1/2;
        flex: 0 0 auto;
        font-size: 15px;
        padding: 0 30px;
    }
}

@media (max-width: 600px) {
    .gc-metodo-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .gc-metodo-image img {
        max-width: 200px;
    }
}

@media (max-width: 992px) {
    .pruebas-content {
        display: flex;
        flex-direction: column;
        /* apilar en columna */
        text-align: left;
        gap: 20px;
    }

    .pruebas-texto {
        order: 1;
        /* primero el texto */
        flex: 0 0 auto;
        font-size: 15px;
        padding: 0 20px;
    }

    .pruebas-image {
        order: 2;
        /* después la imagen */
        flex: 0 0 auto;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        /* imagen apoyada abajo */
        margin-bottom: 0px;
    }

    .pruebas-image img {
        max-width: 220px;
        /* tamaño adaptado */
        height: auto;
    }
}

@media (max-width: 600px) {
    .pruebas-texto {
        font-size: 14px;
        line-height: 1.5;
    }

    .pruebas-image img {
        max-width: 250px;
        width: 100%;
    }

    .requisitos-block {
        background: #f7f7f7;
        padding: 0px 20px;
    }

    .requisitos-image {
        display: flex;
        justify-content: center;
        align-items: end;
    }
}

/* Pantallas extragrandes Guardia Civil */

@media (min-width: 1400px) {
    .gc-header {
        padding: 40px 80px;
    }

    .gc-logo img {
        width: 320px;
    }

    .gc-header-text {
        font-size: 28px;
        line-height: 1.6;
    }
}

@media (min-width: 2000px) {
    h2 {
        font-size: 48px !important;
    }

    h3 {
        font-size: 42px !important;
    }

    li {
        font-size: 32px !important;
    }

    p {
        font-size: 32px !important;
    }

    a {
        font-size: 32px !important;
    }

    .gc-header {}

    .gc-logo img {}

    .gc-header-text {}

    .gc-hero-block {
        min-height: 900px;
    }

    .gc-hero-text {}

    .gc-hero-text p,
    .gc-hero-text li,
    .gc-hero-text strong {
        font-size: 28px !important;
    }

    .gc-hero-text h2 {
        font-size: 38px !important;
    }

    .gc-hero-text h3 {
        font-size: 32px !important;
    }

    .gc-hero-image {}

    .gc-info-block {
        display: flex;
        justify-content: center;

        .gc-info-box {
            font-size: 32px !important;
            padding: 30px 60px;
        }
    }

    .gc-info-content {
        margin: 0;
        width: 100%;

        p {
            font-size: 38px !important;
        }
    }

    a {
        font-size: 28px !important;
    }

    .info-logo {
        img {
            height: 200px;
        }
    }

    .gc-info-content p {
        font-size: 38px !important;
    }

    .gc-info-logo img {
        height: 200px;
    }

    .gc-metodo-block {}

    .gc-metodo-content {
        width: 100%;
        min-height: 1100px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        /* centra horizontalmente el bloque */
        align-items: flex-end;
        /* alinea todo al fondo */
        position: relative;
        max-width: none;
    }

    .gc-metodo-image {
        display: flex;
        justify-content: center;
        /* centra la imagen */
        align-items: flex-end;
        /* la pega al fondo */
        flex: 0 0 auto;
        width: auto;
        height: 100%;
    }

    .gc-metodo-image img {
        max-height: 95%;
        /* controla la proporción */
        height: auto;
        width: 400px;
    }

    .gc-metodo-text {
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: none;
        height: 1000px;

        p,
        li {
            font-size: 28px !important;
        }
    }

    .requisitos-block,
    .labores-block,
    .pruebas-block {
        min-height: 1100px;
        display: flex;
        justify-content: center;
    }

    .requisitos-content,
    .labores-content,
    .pruebas-content {
        min-height: 1100px;
        margin: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        max-width: 2000px;
    }

    .requisitos-text,
    .labores-text,
    .pruebas-texto {
        font-size: 28px;
        line-height: 1.6;

        li {
            font-size: 28px !important;
        }
    }

    .requisitos-image {
        display: flex;
        align-items: center;
        background-color: #fefefe;
        border-radius: 40px;
    }

    .labores-image img,
    .pruebas-image img,
    .requisitos-image img {}

    .labores-image {
        display: flex;
        justify-content: center;
    }

    .final-content strong {
        font-size: 32px !important;
    }

    .pruebas-content {
        font-size: 24px;
    }

    .separator-two {
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: space-around;

        .separator-content {
            text-align: center;
            gap: 200px;
            margin: 0;

            strong {
                font-size: 32px !important;
            }

            a {
                font-size: 28px !important;
            }
        }
    }

    h2 {
        font-size: 38px !important;
    }
}