/* ROMWALA.COM - COMMON SECURITY PAGES CSS */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background-color: #0f172a; 
    color: #e2e8f0; 
    line-height: 1.6; 
}
a { 
    color: #22c55e; 
    text-decoration: none; 
    transition: 0.3s; 
}
a:hover { 
    color: #4ade80; 
    text-decoration: underline; 
}

/* Container & Header Setup */
.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 40px 20px; 
}
.page-header { 
    text-align: center; 
    margin-bottom: 40px; 
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 40px 20px;
    border-radius: 10px;
    border: 1px solid #334155;
}
.page-header h1 { 
    font-size: 38px; 
    color: #f8fafc; 
    margin-bottom: 10px;
}
.page-header p {
    color: #94a3b8;
    font-size: 15px;
}

/* Content Box Global Layout */
.content-box { 
    background: #1e293b; 
    padding: 40px; 
    border-radius: 10px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid #334155;
}
.content-box h2 { 
    color: #22c55e; 
    margin-top: 30px; 
    margin-bottom: 12px; 
    font-size: 22px;
    border-bottom: 1px solid #334155;
    padding-bottom: 5px;
}
.content-box p { 
    margin-bottom: 15px; 
    color: #cbd5e1; 
    font-size: 15px;
}
.content-box ul { 
    margin-left: 25px; 
    margin-bottom: 20px; 
    color: #cbd5e1; 
}
.content-box ul li { 
    margin-bottom: 8px; 
    font-size: 15px;
}

/* Universal Alerts */
.warning-box { 
    background: #3f1d1d; 
    padding: 15px 20px; 
    border-left: 4px solid #ef4444; 
    margin-bottom: 25px; 
    border-radius: 5px; 
    color: #f8fafc;
}
.warning-box strong {
    color: #ef4444;
}
.info-box { 
    background: #1e3a8a; 
    padding: 15px 20px; 
    border-left: 4px solid #3b82f6; 
    margin-bottom: 25px; 
    border-radius: 5px; 
    color: #f8fafc;
}
.info-box strong {
    color: #60a5fa;
}

/* About Page Specific Layout */
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px; 
    margin-bottom: 40px; 
}
.about-card { 
    background: #1e293b; 
    border-radius: 10px; 
    padding: 25px; 
    border-top: 4px solid #22c55e; 
    border-left: 1px solid #334155;
    border-right: 1px solid #334155;
    border-bottom: 1px solid #334155;
    transition: 0.3s; 
}
.about-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.about-card h3 { 
    color: #22c55e; 
    margin-bottom: 12px; 
    font-size: 18px;
}
.about-card p { 
    color: #94a3b8; 
    font-size: 14px; 
}

/* Contact Page Specific Layout */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}
.contact-info-block, .contact-form-block {
    background: #1e293b;
    padding: 35px;
    border-radius: 10px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid #334155;
}
.info-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #334155;
    padding-bottom: 15px;
}
.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.info-item h3 {
    color: #22c55e;
    margin-bottom: 8px;
    font-size: 18px;
}
.info-item p {
    color: #cbd5e1;
    font-size: 14px;
}
.contact-form-block input, .contact-form-block textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #334155;
    border: 1px solid #475569;
    border-radius: 6px;
    color: #f8fafc;
    font-family: inherit;
}
.contact-form-block input:focus, .contact-form-block textarea:focus {
    outline: none;
    border-color: #22c55e;
}
.btn-submit {
    background: #2563eb;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: 0.2s;
}
.btn-submit:hover {
    background: #1d4ed8;
}
.btn-action {
    display: inline-block;
    background: #22c55e;
    color: white;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
}
.btn-action:hover {
    background: #16a34a;
    color: white;
    text-decoration: none;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .page-header h1 { font-size: 30px; }
    .content-box, .contact-info-block, .contact-form-block { padding: 25px; }
    .contact-wrapper { gap: 20px; }
}