:root {
    --primary: #2c3e50;
    --primary-light: #34495e;
    --accent: #17a2b8;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --gray: #6c757d;
}

* {
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* Header */
header {
    background-color: var(--text-light);
    border-bottom: 1px solid #e0e6eb;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

header .navbar-brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}

header .nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    padding: 0.6rem 1.2rem !important;
    border-radius: 6px;
}

header .nav-link:hover {
    color: var(--accent) !important;
}

header .nav-link:hover {
    color: var(--accent) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
}

.hero p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--accent);
    border: none;
    font-weight: 600;
    padding: 0.95rem 2.5rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #138496;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(23, 162, 184, 0.3);
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.about h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.about p {
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #f0f4f7 100%);
}

.services h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.service-item {
    background-color: var(--text-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e6eb;
    margin-bottom: 2rem;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(44, 62, 80, 0.15);
    border-color: var(--accent);
}

.service-item h4 {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.service-item p {
    color: var(--text-dark);
    font-size: 0.98rem;
    line-height: 1.7;
    opacity: 0.85;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.contact h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.contact-card {
    background-color: #f0f4f7;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0e6eb;
    text-align: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(44, 62, 80, 0.12);
    border-color: var(--accent);
}

.contact-card h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--primary);
}

.form-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.form-container {
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);;
    max-width: 700px;
    margin: 0 auto;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 94, 78, 0.1);
    outline: none;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-check {
    padding-left: 1.75rem;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.15rem;
    border: 2px solid #e0e0e0;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 94, 78, 0.1);
}

.form-check-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1.5;
}

.form-check-label a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.form-check-label a:hover {
    color: var(--primary-light);
}

.success-message {
    display: none;
    background: #d4edda;
    border: 2px solid var(--accent);
    color: var(--primary);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 24px;
    font-weight: 500;
}

.success-message.show {
    display: block;
}

.btn-submit {
    background: var(--primary);
    color: white;
    padding: 14px 48px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 1rem;
    }
}

/* Content Section (for legal pages) */
.content-section {
    padding: 6rem 0;
    background-color: var(--text-light);
}

.content-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.3px;
}

.content-section a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.content-section a:hover {
    color: var(--primary);
}

.info-card {
    background-color: #f0f4f7;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.1);
    transform: translateX(5px);
}

.info-card ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.info-card li {
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.info-card p {
    margin-bottom: 0;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--text-light);
    text-align: center;
    padding: 2.5rem 0;
    font-size: 0.95rem;
    font-weight: 500;
}

footer p {
    margin: 0;
    opacity: 0.9;
}

.footer-links {
    margin-top: 1.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 1rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}
