/* Additional CSS for exact layout matching */

/* Top Header adjustments */
.top-header {
    background: linear-gradient(135deg, #1e90ff 0%, #007bff 100%) !important;
    font-size: 0.7rem;
    padding: 4px 0;
}

.top-header .contact-info a {
    color: white !important;
    text-decoration: none;
}

.top-header .contact-info a:hover {
    opacity: 0.8;
}

/* Contact line optimization */
.top-header .contact-line {
    gap: 1rem;
    align-items: center;
    flex-wrap: nowrap !important;
    font-size: 0.8rem;
    font-weight: 500;
}

.top-header .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.top-header .separator {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin: 0 0.5rem;
}

/* Features section */
.top-header .features-section {
    font-size: 0.7rem;
}

.top-header .features-section span {
    white-space: nowrap;
}

/* Social media optimization */
.top-header .social-icons a {
    font-size: 0.9rem;
    margin: 0 0.3rem;
    transition: opacity 0.3s ease;
}

.top-header .social-icons a:hover {
    opacity: 0.8;
}

/* Desktop single line layout */
@media (min-width: 992px) {
    .top-header {
        padding: 5px 0;
    }

    .top-header .d-flex.justify-content-between {
        min-height: 28px;
    }
}

/* Hide desktop row on mobile and show mobile-specific rows */
@media (max-width: 991.98px) {
    .top-header .d-flex.justify-content-between {
        display: none !important;
    }
}

/* Mobile specific adjustments */
@media (max-width: 575.98px) {
    .top-header {
        padding: 3px 0;
    }

    .top-header .contact-line {
        gap: 0.5rem;
        font-size: 0.7rem;
        justify-content: center !important;
    }

    .top-header .contact-item {
        font-size: 0.7rem;
        gap: 0.2rem;
    }

    .top-header .separator {
        margin: 0 0.3rem;
        font-size: 0.8rem;
    }

    .top-header .social-icons {
        justify-content: center !important;
        font-size: 0.8rem;
        margin: 0 0.2rem;
    }
}

/* Ensure single line on medium screens */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .top-header .contact-info span {
        margin-right: 1rem !important;
        font-size: 0.7rem;
    }

    .top-header .d-flex.justify-content-end span {
        margin-right: 0.7rem !important;
        font-size: 0.65rem !important;
    }

    .top-header .ms-4 {
        margin-left: 0.7rem !important;
    }

    .top-header .ms-4 a {
        margin-right: 0.2rem !important;
        font-size: 0.8rem;
    }
}

/* Navigation improvements */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    background-color: #ffffff !important;
}

/* Logo styling to match original */
.navbar-brand {
    margin-right: 2rem;
}

.navbar-brand .logo {
    width: auto;
    height: 50px;
}

.brand-name,
.brand-sub {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    color: #1e90ff !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
    letter-spacing: -0.5px;
}

/* Navigation links exact styling */
.navbar-nav {
    margin-left: 3rem !important;
}



.nav-link:hover {
    color: #1e90ff !important;
}

/* Active link styling */
.navbar-nav .nav-item:first-child .nav-link {
    color: #ff6b35 !important;
}

/* Specific hover states for navigation */
.navbar-nav .nav-link:not(.dropdown-toggle):hover {
    color: #1e90ff !important;
}

.navbar-nav .dropdown-toggle:hover {
    color: #1e90ff !important;
}

/* Mobile responsive fixes */
@media (max-width: 991.98px) {
    .top-header .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .top-header .contact-info span {
        margin: 0 !important;
    }

    .top-header .d-flex.justify-content-end {
        justify-content: start !important;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .navbar-brand {
        margin-right: 1rem !important;
    }

    .navbar-nav {
        margin-left: 0 !important;
        margin-top: 1rem;
    }

    .nav-link {
        font-size: 0.9rem !important;
        padding: 0.8rem 0 !important;
        letter-spacing: 0.5px !important;
    }

    .navbar-actions {
        margin-top: 1rem;
        justify-content: center;
    }

    .btn-primary {
        font-size: 0.8rem !important;
        padding: 0.7rem 1.5rem !important;
    }
}

/* Book button exact styling */
.btn-primary {
    background: linear-gradient(135deg, #1e90ff 0%, #007bff 100%) !important;
    border: none !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 0.7rem 1.8rem !important;
    border-radius: 25px !important;
    box-shadow: 0 3px 10px rgba(30, 144, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
}

.dropdown-menu {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    color: #333 !important;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #1e90ff !important;
}

/* Dropdown arrow styling */
.dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: 0.125em;
}

/* Navigation improvements for responsive */
.nav-link {
    font-weight: 600 !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    padding: 0.6rem 0.8rem !important;
    color: #333333 !important;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* Make navigation more compact */
@media (min-width: 992px) {
    .navbar-nav {
        margin-left: 2rem !important;
    }

    .nav-link {
        padding: 0.6rem 0.6rem !important;
        font-size: 0.8rem !important;
    }

    .language-selector {
        margin-right: 1rem !important;
    }

    .btn-primary {
        font-size: 0.75rem !important;
        padding: 0.6rem 1.2rem !important;
    }
}

/* Hero section layout fixes */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/><circle cx="700" cy="800" r="80" fill="url(%23a)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-overlay {
    /* Overlay manejado inline en HTML */
    z-index: 1;
}

.hero-section .container {
    height: 100%;
    position: relative;
    z-index: 10;
}

.hero-content {
    padding-left: 2rem;
    z-index: 15;
    position: relative;
}

.hero-title {
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Hero features list styling */
.hero-features-list {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
    z-index: 15;
    position: relative;
}

.hero-features-list li {
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    padding: 0.2rem 0;
}

/* CTA Button styling */
.btn-cta-hero {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: 2px solid #ffffff;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    z-index: 15;
    position: relative;
    border-radius: 50px;
    text-decoration: none;
}

.btn-cta-hero:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: #ffffff !important;
    text-decoration: none;
}

/* Google Rating Card */
.google-rating-card {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    font-size: 0.9rem;
    z-index: 15;
    position: relative;
}

/* Facebook card */
.facebook-card {
    z-index: 15;
    position: relative;
}

/* Search Sidebar Optimization */
.search-sidebar {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 15px !important;
    z-index: 15;
    position: relative;
}

.search-sidebar .form-label {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.search-sidebar .form-select {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #333;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.search-sidebar .form-select:focus {
    background: rgba(255, 255, 255, 1);
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.search-sidebar .btn-search {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
}

.search-sidebar .btn-search:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Backdrop blur support */
@supports (backdrop-filter: blur(15px)) {
    .backdrop-blur {
        backdrop-filter: blur(15px);
    }
}

@supports not (backdrop-filter: blur(15px)) {
    .backdrop-blur {
        background: rgba(255, 255, 255, 0.25) !important;
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-features-list {
        font-size: 1.2rem;
    }

    .search-sidebar {
        margin-top: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        min-height: 600px;
    }

    .hero-title {
        font-size: 2.6rem;
        text-align: center;
    }

    .hero-features-list {
        font-size: 1.1rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        padding-left: 0;
        margin-bottom: 2rem;
    }

    .facebook-card {
        max-width: none !important;
        margin: 0 auto;
    }

    .partners-section {
        padding: 2rem 0 !important;
        position: relative !important;
        margin-top: 2rem;
    }

    .search-sidebar {
        background: rgba(255, 255, 255, 0.038) !important;
        color: #333 !important;
        margin-top: 1rem;
    }

    .search-sidebar .form-label {
        color: #333 !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-features-list {
        font-size: 1rem;
        padding-left: 0;
    }

    .btn-cta-hero {
        font-size: 0.95rem;
        padding: 0.7rem 1.5rem;
    }

    .google-rating-card {
        font-size: 0.8rem;
    }

    .search-sidebar {
        background: rgba(255, 255, 255, 0.069) !important;
        color: #333 !important;
        padding: 1.5rem !important;
    }

    .search-sidebar .form-label {
        color: #333 !important;
        font-size: 0.8rem;
    }

    .partner-logo {
        height: 30px !important;
        margin: 0 10px;
    }

    .partners-section {
        padding: 1.5rem 0 !important;
    }
}

/* Ensure proper stacking */
.hero-section>* {
    position: relative;
}

/* Partner Logos Styling */
.partners-section {
    z-index: 20;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-logo {
    max-height: 40px;
    width: auto;
    filter: grayscale(0.3) opacity(0.8);
    transition: all 0.3s ease;
    margin: 0 15px;
    object-fit: contain;
}

.partner-logo:hover {
    filter: grayscale(0) opacity(1);
    transform: translateY(-2px);
}

/* Tours Section Styling */
.tours-section {
    background: #f8f9fa;
    padding: 6rem 0 4rem 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    color: #1e90ff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
}

/* Tour Cards Horizontal Styling */
.tour-card-horizontal {
    background: #ffffff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: visible;
    transition: all 0.3s ease;
    margin-bottom: 2.5rem;
    min-height: 240px;
}

.tour-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.tour-card-horizontal .col-md-4 {
    position: relative;
    min-height: 240px;
    overflow: hidden;
}

.tour-card-horizontal .object-cover {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.tour-badge .badge {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.tour-badge .bg-danger {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.tour-badge .bg-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%) !important;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.tour-badge .bg-info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%) !important;
    color: white;
}

.tour-badge .bg-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    color: white;
}

.tour-card-horizontal .card-body {
    padding: 2rem 2rem;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tour-card-horizontal .card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tour-specs {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.spec-item i {
    color: #1e90ff;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.price-current {
    color: #1e90ff !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

.feature-item i {
    margin-top: 0.3rem;
    margin-right: 0.6rem;
    font-size: 0.6rem;
    color: #28a745;
}

.tour-features {
    margin: 1rem 0;
}

.btn-action-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    flex-shrink: 0;
    width: 100%;
    z-index: 1;
}

/* Botón secundario personalizado */
.btn-secondary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    color: white;
    font-weight: 700;
    border-radius: 30px;
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    color: white;
}

/* Footer Styles */
.hover-text-white:hover {
    color: white !important;
}

.hover-text-primary:hover {
    color: #ff6b35 !important;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.stats-mini .bg-primary,
.stats-mini .bg-success {
    transition: all 0.3s ease;
}

.stats-mini .bg-primary:hover,
.stats-mini .bg-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-outline-primary {
    border: 2px solid #1e90ff;
    color: #1e90ff;
    background: transparent;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #1e90ff;
    border-color: #1e90ff;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #1e90ff 0%, #007bff 100%);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

/* Responsive tour cards */
@media (max-width: 992px) {
    .tour-card-horizontal {
        height: auto;
        margin-bottom: 2rem;
    }

    .tour-card-horizontal .col-md-4 {
        height: 220px;
    }

    .tour-card-horizontal .card-body {
        height: auto;
        padding: 2rem 1.5rem;
    }

    .tour-specs {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .tour-card-horizontal .col-md-4 {
        height: 180px;
    }

    .tour-card-horizontal .card-body {
        padding: 1.5rem;
    }

    .tour-card-horizontal .card-title {
        font-size: 1.2rem;
    }

    .tour-specs {
        flex-direction: column;
        gap: 0.8rem !important;
        align-items: flex-start;
    }

    .spec-item {
        font-size: 0.8rem;
    }

    .price-current {
        font-size: 1.5rem !important;
    }

    .feature-item {
        font-size: 0.8rem;
    }

    .btn-action-group {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-action-group .btn {
        width: 100%;
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .tours-section {
        padding: 4rem 0 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
}

/* Responsive partner logos */
@media (max-width: 768px) {
    .partner-logo {
        height: 30px !important;
        margin: 0 10px;
    }

    .partners-section {
        padding: 1.5rem 0 !important;
    }
}

@media (max-width: 576px) {
    .partner-logo {
        height: 25px !important;
        margin: 0 8px;
    }
}

/* Language Selector and Book Button Optimization */
.navbar-actions {
    gap: 1rem;
    align-items: center;
}

.language-selector {
    padding: 0.3rem 0;
}

.language-selector .flag {
    transition: all 0.2s ease;
    display: inline-block;
    vertical-align: middle;
}

.language-selector .flag:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Book Now Button Styling */
.btn-book-now {
    background: linear-gradient(135deg, #1e90ff 0%, #007bff 100%);
    border: none;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-book-now:hover {
    background: linear-gradient(135deg, #0056b3 0%, #0056b3 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
    text-decoration: none;
}

/* Responsive navbar actions */
@media (max-width: 991px) {
    .navbar-actions {
        gap: 0.8rem;
        margin-top: 0.3rem;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }

    .language-selector {
        margin-right: 0.5rem !important;
    }

    .btn-book-now {
        font-size: 0.65rem !important;
        padding: 0.5rem 0.9rem !important;
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .navbar-actions {
        gap: 0.5rem;
    }

    .language-selector .flag {
        width: 18px;
        height: 12px;
    }

    .btn-book-now {
        font-size: 0.6rem !important;
        padding: 0.4rem 0.7rem !important;
    }
}

/* Fix for button styling */
.btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.btn-lg.rounded-pill {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

/* Stars styling */
.stars i {
    color: #ffc107;
    font-size: 1rem;
    margin-right: 2px;
}

/* Facebook card improvements */
.facebook-card .h4 {
    font-size: 1.8rem;
    font-weight: 800;
}