/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    background-image: url('https://via.placeholder.com/1920x500'); /* Replace with an appropriate image */
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.hero-container {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 8px;
    animation: fadeIn 2s ease-in-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideInDown 2s ease;
}

.hero p {
    font-size: 1.3rem;
    animation: fadeInUp 3s ease;
}

/* Press Releases Section */
.press-releases-section .container {
    width: 90%;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: slideInLeft 1s ease-in-out;
}

.press-releases-section h2 {
    font-size: 2.5rem;
    color: #00a5d1;
    text-align: center;
    margin-bottom: 2rem;
}

.press-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
}

.press-item {
    flex: 1 1 30%;
    background-color: #f1f1f1;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.press-item:hover {
    transform: translateY(-5px);
}

.press-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #00a5d1;
}

.press-item .press-date {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 1rem;
}

.press-item p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.read-more {
    color: #00a5d1;
    text-decoration: underline;
}

/* Media Mentions Section */
.media-mentions-section .mentions-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mention-item a {
    color: #00a5d1;
    text-decoration: none;
    font-size: 1.1rem;
}

.mention-item a:hover {
    text-decoration: underline;
    color: #007b9a;
}

/* Media Kit Section */
.media-kit-section {
    background-color: #00a5d1;
    color: #ffffff;
    text-align: center;
    padding: 3rem 0;
    animation: fadeIn 1.5s ease;
}

.media-kit-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.media-kit-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #ffc107;
    color: #333;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e0a800;
    cursor: pointer;
}

/* Footer Styles */
.footer-container {
    background-color: #333;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
}

.footer-container a {
    color: #ffc107;
    text-decoration: underline;
}

.footer-container a:hover {
    color: #e0a800;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
