:root {
    --primary-color: #1a2a44; /* Deep Navy */
    --accent-color: #D4AF37;  /* Sentra Tech Gold */
    --text-color: #333;
    --light-text: #666;
    --bg-color: #f4f7f9;
    --card-bg: #ffffff;
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 800px;
}

.card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    padding: 40px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.logo-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 200px;
}

.logo {
    max-width: 100%;
    height: auto;
    display: block;
}

.transition-arrow {
    color: var(--light-text);
    padding: 0 20px;
}

/* Content Section */
.notice-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 700;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding: 15px;
    background-color: #fff9e6;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.info-text p {
    margin-bottom: 1.2rem;
    color: var(--text-color);
}

.services {
    margin: 2.5rem 0;
    padding: 25px;
    background-color: #f8fafc;
    border-radius: 8px;
}

.services h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.services ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.services li {
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.services li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.priority-statement {
    font-style: italic;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* CTA */
.cta-section {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 42, 68, 0.2);
}

.cta-button:hover {
    background-color: #253a5e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 42, 68, 0.3);
}

/* Contact Section */
.contact-section {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.contact-section h3 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    text-align: center;
}

.contact-item .label {
    display: block;
    font-size: 0.8rem;
    color: var(--light-text);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.emails a {
    display: block;
    margin-bottom: 2px;
}

.closing-note {
    font-size: 0.9rem;
    color: var(--light-text);
    text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
    .card {
        padding: 25px;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .transition-arrow {
        transform: rotate(90deg);
        padding: 10px 0;
    }
    
    .services ul {
        grid-template-columns: 1fr;
    }
    
    .notice-title {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
}
