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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
}

.rune {
    font-size: 48px;
    font-weight: bold;
    color: #1a4d7a;
    line-height: 1;
}

.company-name {
    font-weight: 600;
    color: #1a4d7a;
    letter-spacing: 0.5px;
}

.email-link {
    color: #1a4d7a;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.email-link:hover {
    background-color: #f0f4f8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a4d7a 0%, #2d6a9f 100%);
    color: white;
    padding: 80px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    text-align: left;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: white;
    color: #1a4d7a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

/* About Section */
.about {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a4d7a;
    text-align: center;
}

.about p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #555;
}

.rune-inline {
    font-size: 22px;
    font-weight: bold;
    color: #1a4d7a;
}

/* Services Section */
.services {
    padding: 80px 40px;
    background-color: white;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a4d7a;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding: 40px 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(26, 77, 122, 0.1);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a4d7a;
}

.service-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 40px;
    background-color: #1a4d7a;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: white;
    color: #1a4d7a;
}

/* Footer */
footer {
    padding: 30px 40px;
    background-color: #0f2d47;
    color: white;
    text-align: center;
}

footer p {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .tagline {
        font-size: 18px;
    }

    .about h2,
    .services h2,
    .contact h2 {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
