/* NYDFS Part 500 specific styles */
.subtitle {
    font-weight: 400;
    font-size: 0.75em;
    opacity: 0.9;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.key-details {
    background-color: #f0f4f8; /* Lighter grey-blue */
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #dee5ec;
}

.detail-item {
    margin-bottom: 15px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item h4 {
    color: #34495e; /* Darker grey-blue */
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.detail-item p {
    margin: 0;
}

.status-active {
    color: #27ae60; /* Green */
    font-weight: 600;
}

/* NY State Seal */
.ny-state-seal-wrapper {
    margin-bottom: 15px;
}

.ny-state-seal {
    height: 50px; 
    width: auto;
    opacity: 0.9;
}

/* Hero section specific to NYDFS */
.hero-section {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.9), rgba(44, 62, 80, 0.9)), url('../images/nydfs-hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* Requirement Grid */
.requirement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.requirement-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.requirement-item i {
    font-size: 2.5rem;
    color: #3498db; /* NYDFS theme blue */
    margin-bottom: 15px;
    display: block;
}

.requirement-item h4 {
    color: #2c3e50; /* Dark blue-grey */
    margin-bottom: 10px;
    font-size: 1.15rem;
}

/* Regulation Card Specifics */
.regulation-card-header {
    background: linear-gradient(to right, #34495e, #2c3e50); /* Grey-blue gradient */
}

/* Compliance Section */
.compliance-section {
    background-color: #eaf2f8;
    border-left: 5px solid #3498db;
    padding: 30px;
    margin: 3rem 0;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    gap: 25px;
}

.compliance-section i {
    font-size: 3rem;
    color: #3498db;
}

.compliance-section p {
    margin: 0;
    line-height: 1.6;
    color: #34495e;
}

/* Resource and Tool Cards */
.resource-card i,
.tool-card i {
    color: #3498db; /* NYDFS theme blue */
}

.resource-card .resource-link {
    color: #2980b9;
}

/* Customizing buttons */
.btn-primary {
    background-color: #34495e;
}

.btn-primary:hover {
    background-color: #2c3e50;
}

.btn-secondary {
    border-color: #34495e;
    color: #34495e;
}

.btn-secondary:hover {
    background-color: #f0f4f8;
    color: #2c3e50;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
    .compliance-section {
        flex-direction: column;
        text-align: center;
    }
} 