* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --prediama-primary: #1a365d;
    --prediama-secondary: #2d3748;
    --prediama-accent: #d69e2e;
    --prediama-white: #ffffff;
    --prediama-gray-50: #f9fafb;
    --prediama-gray-100: #f3f4f6;
    --prediama-gray-200: #e5e7eb;
    --prediama-gray-300: #d1d5db;
    --prediama-gray-400: #9ca3af;
    --prediama-gray-500: #6b7280;
    --prediama-gray-600: #4b5563;
    --prediama-gray-700: #374151;
    --prediama-gray-800: #1f2937;
    --prediama-gray-900: #111827;
    --prediama-success: #10b981;
    --prediama-warning: #f59e0b;
    --prediama-error: #ef4444;
    --prediama-hero-gradient: linear-gradient(135deg, #1a365d 0%, #d69e2e 100%);
    --prediama-max-width: 1200px;
    --prediama-border-radius: 12px;
    --prediama-transition: all 0.3s ease;
    --prediama-card-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --prediama-hover-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--prediama-gray-800);
    background: var(--prediama-white);
    overflow-x: hidden;
}

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

.prediama-container {
    max-width: var(--prediama-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header and Navigation */
.prediama-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--prediama-gray-200);
    z-index: 1000;
    transition: var(--prediama-transition);
}

.prediama-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: var(--prediama-max-width);
    margin: 0 auto;
}

.prediama-logo {
    width: 180px;
    height: 60px;
    background-image: url('img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.prediama-company-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--prediama-primary);
    letter-spacing: 0.5px;
}

.prediama-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.prediama-nav-menu a {
    text-decoration: none;
    color: var(--prediama-gray-600);
    font-weight: 500;
    transition: var(--prediama-transition);
    position: relative;
}

.prediama-nav-menu a:hover,
.prediama-nav-active {
    color: var(--prediama-primary) !important;
}

.prediama-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--prediama-accent);
    transition: var(--prediama-transition);
}

.prediama-nav-menu a:hover::after,
.prediama-nav-active::after {
    width: 100%;
}

.prediama-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.prediama-nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--prediama-primary);
    transition: var(--prediama-transition);
}

.prediama-main {
    margin-top: 80px;
}

/* Hero Section */
.prediama-hero {
    background: var(--prediama-primary);
    color: var(--prediama-white);
    padding: 4rem 0;
    text-align: center;
}

.prediama-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.prediama-hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* News Content */
.prediama-news-content {
    padding: 4rem 0;
    background: var(--prediama-gray-100);
}

.prediama-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.prediama-news-card {
    background: var(--prediama-white);
    border-radius: var(--prediama-border-radius);
    box-shadow: var(--prediama-card-shadow);
    overflow: hidden;
    transition: var(--prediama-transition);
}

.prediama-news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--prediama-hover-shadow);
}

.prediama-news-card.featured {
    grid-column: 1 / -1;
}

.prediama-news-card.featured .prediama-news-image {
    height: 300px;
}

.prediama-news-card.featured .prediama-news-title {
    font-size: 1.6rem;
}

.prediama-news-image {
    height: 200px;
    overflow: hidden;
}

.prediama-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--prediama-transition);
}

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

.prediama-news-card-content {
    padding: 1.5rem;
}

.prediama-news-date {
    color: var(--prediama-gray-600);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.prediama-news-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--prediama-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.prediama-news-excerpt {
    color: var(--prediama-gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.prediama-news-link {
    color: var(--prediama-accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--prediama-transition);
    font-size: 0.9rem;
}

.prediama-news-link:hover {
    color: var(--prediama-primary);
}

/* Button Styles */
.prediama-btn-primary,
.prediama-btn-outline {
    padding: 0.8rem 1.5rem;
    border-radius: var(--prediama-border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--prediama-transition);
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.prediama-btn-primary {
    background: var(--prediama-accent);
    color: var(--prediama-white);
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
}

.prediama-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 158, 46, 0.4);
}

.prediama-btn-outline {
    background: transparent;
    color: var(--prediama-primary);
    border: 2px solid var(--prediama-primary);
}

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

/* Load More Section */
.prediama-load-more {
    text-align: center;
    padding: 2rem 0;
}

/* Footer Unified Style */
.footer {
    background-color: #1a365d;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #d69e2e;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #d69e2e;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    margin-top: 0;
}

.footer-bottom p {
    opacity: 0.8;
    margin: 0;
    font-size: 0.9rem;
}



/* Responsive Design */
@media (max-width: 768px) {
    .prediama-nav-menu {
        display: none;
    }
    
    .prediama-nav-toggle {
        display: flex;
    }
    
    .prediama-hero-title {
        font-size: 2rem;
    }
    
    .prediama-hero-subtitle {
        font-size: 1rem;
    }
    
    .prediama-news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .prediama-news-card.featured .prediama-news-image {
        height: 250px;
    }
    
    .prediama-news-card.featured .prediama-news-title {
        font-size: 1.4rem;
    }
    
    .prediama-container {
        padding: 0 1rem;
    }
    
    .prediama-nav {
        padding: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .prediama-hero {
        padding: 2rem 0;
    }
    
    .prediama-hero-title {
        font-size: 1.8rem;
    }
    
    .prediama-news-content {
        padding: 2rem 0;
    }
    
    .prediama-news-grid {
        gap: 1rem;
    }
    
    .prediama-news-card-content {
        padding: 1rem;
    }
    
    .prediama-news-card.featured .prediama-news-image {
        height: 200px;
    }
    
    .prediama-news-card.featured .prediama-news-title {
        font-size: 1.3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
} 