/* Global styles */
.tagline {
    font-size: 1.2rem;
    font-style: italic;
    margin-top: -0.5rem;
    margin-bottom: 0;
    opacity: 0.9;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.01em;
}

/* Section enhancements */
section {
    padding: 4rem 0;
}

/* Header and footer refinements */
header, footer {
    padding: 2rem 0;
}

/* Diagonal divider in header */
.header-with-divider {
    position: relative;
    overflow: hidden;
}

.header-with-divider::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    background-color: var(--bs-secondary);
    opacity: 0.75;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.header-right {
    position: relative;
    z-index: 1;
}

/* List styling */
ul.card-text li {
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

/* Slight animation on card hover */
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Custom styles for strategy cards */
.strategy-card {
    border-width: 1px !important;
    border-style: solid !important;
}

.strategy-card-1 {
    border-color: rgba(23, 162, 184, 0.5) !important;
}

.strategy-card-2 {
    border-color: rgba(168, 56, 59, 0.5) !important;
}

.strategy-card-3 {
    border-color: rgba(39, 174, 96, 0.5) !important;
}

.quote {
    font-family: 'serif';
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Link styling */
a {
    transition: color 0.2s ease;
}

footer a.text-white:hover {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
}

