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

:root {
    --primary: #ff5722;
    --primary-dark: #e55e00;
    --secondary: #ff9800;
    --dark: #222;
    --light: #f9f9f9;
    --gray: #777;
    --light-gray: #eee;
    --card-bg: #fffaf5;
}

body {
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background-color: #ffffff;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}

.logo span {
    color: #ff5722;
    font-weight: 800;
    font-size: 28px;
    margin-left: 10px;
}

.logo a {
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: #ff5722;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff5722;
    transition: 0.3s;
}

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

nav ul li a.active {
    color: #ff5722;
    font-weight: 600;
    padding-bottom: 5px;
}

.download-btn {
    background-color: #ff5722;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.download-btn i {
    margin-right: 8px;
}

.download-btn:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

/* Main Content Styles */
main {
    margin-top: 80px;
    padding: 40px 5%;
}

.press-hero {
    text-align: center;
    margin-bottom: 60px;
}

.press-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #222;
}

.press-hero h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 10px auto 0;
}


.press-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #666;
}

.press-section {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #222;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 10px auto 0;
}

.press-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.press-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.press-card-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

.press-card:hover .press-card-image img {
    transform: scale(1.05);
}

.press-card-content {
    padding: 25px;
}

.press-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.press-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
}

.press-card .date {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}


.press-source {
    display: flex;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.source-logo {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
    overflow: hidden;
}

.source-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.source-name {
    font-size: 14px;
    color: #777;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 80px 0 40px;
    position: relative;
}

.footer-grid {
    display: flex;
    gap: 100px;
    margin-bottom: 60px;
    justify-content: center;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
    margin-left: 20px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.footer-column ul {
    list-style: none;
    margin-left: 20px;
}

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

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.05rem;
}

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

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-btn {
    display: flex;
    align-items: center;
    background-color: #333;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-align: left;
    margin-left: 20px;
}

.app-btn:hover {
    background-color: var(--primary);
    transform: translateX(5px);
}

.app-btn i {
    font-size: 2rem;
    margin-right: 15px;
    color: var(--primary);
}

.app-btn:hover i {
    color: var(--white);
}

.app-text {
    display: flex;
    flex-direction: column;
}

.app-text small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.app-text div {
    font-weight: 600;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #333;
    border-radius: 50%;
    color: var(--light);
    font-size: 1.3rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 1rem;
}