* {
    font-family: 'Inter', sans-serif;
	word-break: break-all;
}

body {
    background: #f3f2ef;
    color: #000000de;
}

/* Navigation */
nav {
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);
}

/* Button styles - LinkedIn inspired */
.btn-primary {
    background: #0a66c2;
    color: white;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #004182;
}

.btn-secondary {
    border: 1px solid #0a66c2;
    color: #0a66c2;
    font-weight: 600;
    transition: all 0.2s;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(10, 102, 194, 0.08);
    border-color: #004182;
}

/* Card styles - cleaner, less rounded */
.card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 0 0 1px rgba(0,0,0,.08);
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 0 0 1px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.12);
}

/* Hero section - Full screen */
.hero-section {
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,.08);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Section backgrounds */
.section-white {
    background: #ffffff;
}

.section-gray {
    background: #f3f2ef;
}

/* Company logo */
.company-logo {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    border: 1px solid rgba(0,0,0,.08);
}

/* Tag style - LinkedIn inspired */
.tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: #e7f3ff;
    color: #004182;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Typography adjustments */
h1, h2, h3 {
    color: rgba(0,0,0,.9);
}

/* Links */
.link {
    color: #0a66c2;
    font-weight: 600;
    transition: color 0.2s;
}

.link:hover {
    color: #004182;
}

/* Stats section */
.stat-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.08);
    padding: 1.5rem;
}

/* Footer */
footer {
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,.08);
}

/* Placement card specific */
.placement-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.08);
    transition: all 0.2s;
}

.placement-card:hover {
    box-shadow: 0 0 0 1px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.12);
}

/* Badge */
.badge {
    background: #0a66c2;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Newsletter input */
.newsletter-input {
    border: 1px solid rgba(0,0,0,.15);
    background: #ffffff;
    transition: all 0.2s;
}

.newsletter-input:focus {
    outline: none;
    border-color: #0a66c2;
    box-shadow: 0 0 0 2px rgba(10, 102, 194, 0.1);
}

/* Blog card */
.blog-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.08);
    transition: all 0.2s;
    overflow: hidden;
}

.blog-card:hover {
    box-shadow: 0 0 0 1px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.12);
}

.blog-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 200px;
}