* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

:root {
    --primary: #005e86;
    --secondary: #f68b1f;
    --accent: #009dc7;
    --light: #f5f7fa;
    --dark: #003a52;
    --error: #e74c3c;
    --success: #2ecc71;
}

body {
    background-color: #f8fafc;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.logo-container img {
    height: 50px;
}

.logo-text {
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

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

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s;
    position: relative;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.15);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(rgba(0, 94, 134, 0.9), rgba(0, 58, 82, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero h1 span {
    color: var(--secondary);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(246, 139, 31, 0.4);
}

.btn-primary:hover {
    background: #e07b0d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(246, 139, 31, 0.5);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary);
}

.stat-text {
    font-size: 1.1rem;
    font-weight: 500;
}

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

.section-title p {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.7;
}

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

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--secondary) 0%, #e07b0d 100%);
    transform: scale(1.1);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.feature-card:hover h3 {
    color: var(--secondary);
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

.capacitacion-enfocada {
    background: linear-gradient(135deg, var(--light) 0%, #e6f7ff 100%);
    padding: 80px 20px;
}

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

.capacitacion-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.capacitacion-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.capacitacion-img {
    height: 220px;
    overflow: hidden;
}

.capacitacion-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.capacitacion-card:hover .capacitacion-img img {
    transform: scale(1.1);
}

.capacitacion-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.capacitacion-content h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
    transition: color 0.3s;
}

.capacitacion-card:hover .capacitacion-content h3 {
    color: var(--secondary);
}

.capacitacion-content p {
    color: #666;
    line-height: 1.7;
    flex-grow: 1;
}

/* HEADER DE CURSO */
.curso-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
}

.curso-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.curso-header .subtitle {
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.curso-header img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
}

/* --- ESTILOS DE CURSOS --- */

/* Contenedor para el layout de la imagen */
.cursos-layout-principal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Estilos generales para todas las tarjetas de curso */
.curso {
    background: white;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: visible;
}

.curso:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* --- Estilos para el CURSO DESTACADO (grande) --- */
.curso-destacado {
    grid-column: 1 / -1;
    /* Ocupa las 3 columnas */
    flex-direction: row;
    /* Imagen a la izquierda, texto a la derecha */
    align-items: center;
}

.curso-destacado-img {
    flex: 1 1 50%;
    height: 100%;
}

.curso-destacado-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.curso-destacado-content {
    flex: 1 1 50%;
    padding: 40px;
}

.curso-badge-destacado {
    background-color: var(--success);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    align-self: flex-start;
    margin-bottom: 20px;
    display: inline-block;
}

.curso-destacado-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.curso-destacado-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Botón con borde */
.btn-secondary-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* --- Estilos para los CURSOS PEQUEÑOS --- */
.curso-img {
    height: 220px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.curso-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.curso:hover .curso-img img {
    transform: scale(1.05);
}

.curso-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.curso h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.curso p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.curso-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    /* Cambiado a la izquierda para coincidir con el estilo */
    background: var(--success);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.proximamente-badge {
    position: absolute;
    top: 25px;
    right: -25px;
    background: #e74c3c;
    color: white;
    padding: 8px 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Contenedor para el resto de los cursos */
.cursos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.testimonials {
    background: linear-gradient(135deg, var(--light) 0%, #e6f7ff 100%);
    padding: 80px 20px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-content {
    margin-top: 30px;
    color: #555;
    font-style: italic;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--accent);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.author-info p {
    color: var(--secondary);
    font-size: 0.9rem;
}

.contact {
    background: var(--primary);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    grid-column: span 2;
    position: relative;
}

.form-group.half {
    grid-column: span 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s;
}

.form-group select option {
    color: black;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px var(--accent);
}

.form-group .error-message {
    display: none;
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 0.85rem;
    color: var(--secondary);
}

.form-group.error .error-message {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    background: rgba(231, 76, 60, 0.15);
    box-shadow: 0 0 0 2px var(--error);
}

.contact button {
    grid-column: span 2;
    background: var(--secondary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.contact button:hover {
    background: #e07b0d;
}

.success-message {
    grid-column: span 2;
    background: rgba(46, 204, 113, 0.1);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    display: none;
}

footer {
    background: var(--dark);
    color: white;
    padding: 50px 20px 30px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: left;
}

.footer-column h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.footer-column p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

.social-links a.facebook:hover {
    background: #1877F2;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social-links a.x-twitter:hover {
    background: #000000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.social-links a.linkedin:hover {
    background: #0077B5;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

.social-links a.instagram:hover {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
}

.social-links a.youtube:hover {
    background: #FF0000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

/* Fallback for generic hover if needed, or remove specific generic hover */

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    border-radius: 4px;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-column ul li a i {
    color: var(--accent);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover i {
    color: var(--secondary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 3px;
    transition: color 0.3s ease;
}

.contact-item:hover i {
    color: var(--secondary);
}

.copyright {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Contenedor para botones flotantes */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
    /* Align right */
    z-index: 1000;
}

.whatsapp-btn {
    position: relative !important;
    /* Managed by container, override fixed */
    bottom: auto !important;
    right: auto !important;
    background: #25d366;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 1.5s infinite;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.phone-number {
    position: absolute;
    top: -45px;
    right: 0;
    background: #075e54;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    /* Prevent blocking clicks */
}

.whatsapp-btn:hover .phone-number {
    opacity: 1;
}

.whatsapp-btn i {
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover i {
    transform: scale(1.2);
}

/* Botón de desplazamiento */
.scroll-top {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    /* Reset fixed pos since it is in container */
    position: relative;
    visibility: hidden;
    /* Hide by default, show with class */
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .cursos-layout-principal {
        grid-template-columns: repeat(2, 1fr);
    }

    .curso-destacado {
        flex-direction: column;
    }

    .curso-destacado-img,
    .curso-destacado-content {
        flex-basis: auto;
        width: 100%;
    }

    .curso-destacado-img {
        height: 300px;
    }
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group.half {
        grid-column: span 2;
    }

    .capacitacion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .stats {
        gap: 30px;
    }

    .section {
        padding: 60px 20px;
    }

    .capacitacion-grid {
        grid-template-columns: 1fr;
    }

    .cursos-layout-principal {
        grid-template-columns: 1fr;
    }

    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .phone-number {
        top: -40px;
        font-size: 0.9rem;
        padding: 6px 12px;
    }


    .curso-header h1 {
        font-size: 2.2rem;
    }

    .curso-header .subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
    }

    .phone-number {
        top: -35px;
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}