:root {
    --pro-bg: #f8f9fa;
    --pro-text: #2c3e50;
    --pro-primary: #34495e; /* Dark Blue Grey */
    --pro-secondary: #e74c3c; /* Professional Red */
    --pro-card: #ffffff;
    --pro-border: #dcdde1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--pro-bg); color: var(--pro-text);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

.pro-container { max-width: 1000px; margin: 0 auto; padding: 0 30px; }

/* Header */
.pro-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 0; border-bottom: 2px solid var(--pro-primary);
    margin-bottom: 50px;
}
.pro-brand {
    font-size: 24px; font-weight: bold; color: var(--pro-primary);
    display: flex; align-items: center; gap: 10px; text-transform: uppercase;
}
.pro-brand::before { content: '💼'; font-size: 24px; }
.pro-nav { display: flex; gap: 25px; }
.pro-nav a {
    color: #555; text-decoration: none; font-size: 15px; font-weight: bold;
    text-transform: uppercase; transition: color 0.3s;
}
.pro-nav a:hover, .pro-nav a.active { color: var(--pro-secondary); }

/* Hero */
.pro-hero {
    text-align: center; margin-bottom: 80px; padding: 60px 20px;
    background: var(--pro-card); border: 1px solid var(--pro-border);
    border-top: 5px solid var(--pro-secondary); box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.pro-hero h1 { font-size: 38px; color: var(--pro-primary); margin-bottom: 20px; }
.pro-hero p { font-size: 18px; color: #666; max-width: 700px; margin: 0 auto 30px;}

.btn-pro {
    display: inline-block; padding: 14px 35px; font-size: 16px; font-weight: bold;
    color: #fff; background: var(--pro-primary); border: none;
    text-decoration: none; text-transform: uppercase; transition: background 0.3s;
}
.btn-pro:hover { background: var(--pro-secondary); }

/* Services */
.pro-services { margin-bottom: 80px; }
.p-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.p-card {
    background: var(--pro-card); padding: 40px; border: 1px solid var(--pro-border);
    display: flex; gap: 20px; align-items: flex-start;
}
.p-icon {
    font-size: 36px; color: var(--pro-secondary);
}
.p-content h3 { font-size: 20px; color: var(--pro-primary); margin-bottom: 10px;}
.p-content p { font-size: 14px; color: #666;}

/* Contact Box */
.pro-contact {
    background: var(--pro-primary); color: #fff; padding: 40px; text-align: center;
    margin-bottom: 80px;
}
.pro-contact h2 { font-size: 28px; margin-bottom: 15px;}
.pro-contact p { font-size: 16px; margin-bottom: 20px; opacity: 0.9;}
.contact-email { font-size: 24px; font-weight: bold; font-family: monospace; letter-spacing: 1px;}

/* FAQ */
.pro-faq { margin-bottom: 80px; }
.pro-faq h2 { font-size: 26px; color: var(--pro-primary); margin-bottom: 30px; border-bottom: 2px solid var(--pro-border); padding-bottom: 10px;}
.p-faq-item { margin-bottom: 25px; }
.p-fq { font-weight: bold; font-size: 16px; color: var(--pro-primary); margin-bottom: 8px;}
.p-fa { color: #555; font-size: 15px; padding-left: 15px; border-left: 3px solid var(--pro-border);}

footer {
    text-align: center; padding: 30px 0; color: #999; font-size: 13px;
    border-top: 1px solid var(--pro-border); text-transform: uppercase;
}

@media (max-width: 768px) {
    .p-grid { grid-template-columns: 1fr; }
    .pro-header { flex-direction: column; gap: 15px; }
}