/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

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

/* Color Variables */
:root {
    --primary-teal: #1a5f5f;
    --secondary-coral: #ff7f7f;
    --charcoal: #333333;
    --light-gray: #f8f9fa;
    --border-gray: #e9ecef;
    --text-gray: #6c757d;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin: 0;
}

.brand-name span {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #2a7a7a 100%);
    color: white;
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

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

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-coral);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Sections */
.section {
    padding: 3rem 0;
    text-align: center;
}

.bg-light {
    background-color: var(--light-gray);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--charcoal);
    font-weight: 600;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.news-card.featured {
    grid-row: span 2;
}

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

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.news-content {
    padding: 1.5rem;
}

.news-category {
    display: inline-block;
    background: var(--primary-teal);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.news-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.news-content p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.news-content time {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Guide Grid */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.guide-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guide-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.guide-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.guide-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-weight: 600;
}

.guide-stats span:first-child {
    color: var(--secondary-coral);
}

.guide-stats span:last-child {
    color: var(--primary-teal);
}

/* Cost Dashboard */
.cost-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cost-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cost-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-teal);
    text-align: center;
}

.cost-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-gray);
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-label {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.cost-value {
    font-weight: 600;
    color: var(--charcoal);
}

/* Transport Grid */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.transport-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.transport-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.transport-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.transport-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Tech Showcase */
.tech-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.tech-news h4, .tech-events h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.tech-updates {
    list-style: none;
}

.tech-updates li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-gray);
}

.tech-updates li:last-child {
    border-bottom: none;
}

.tech-date {
    font-size: 0.85rem;
    color: var(--text-gray);
    min-width: 80px;
    flex-shrink: 0;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.event-date {
    text-align: center;
    min-width: 50px;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-teal);
}

.event-date .month {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.event-info h5 {
    margin-bottom: 0.25rem;
    color: var(--charcoal);
}

.event-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-coral);
    margin-bottom: 1.5rem;
}

.service-btn {
    display: inline-block;
    background: var(--primary-teal);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.service-btn:hover {
    background: #2a7a7a;
}

/* Jobs Preview */
.jobs-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.job-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-teal);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.job-header h4 {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin: 0;
}

.job-salary {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-coral);
}

.job-company {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-tag {
    background: var(--light-gray);
    color: var(--text-gray);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Contacts */
.contacts {
    background: var(--light-gray);
    text-align: left;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.contact-card p {
    margin: 0;
}

.contact-card a {
    color: var(--primary-teal);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo div strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.footer-logo div p {
    font-size: 0.9rem;
    color: #cccccc;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-contact {
    text-align: left;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

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

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--secondary-coral);
}

.footer-section p {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0.25rem 0;
}

.footer-bottom {
    border-top: 1px solid #555555;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .guide-grid,
    .services-grid,
    .transport-grid {
        grid-template-columns: 1fr;
    }
    
    .cost-dashboard {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}