/* 
   Design Philosophy: Professional & Trustworthy
   Color Palette: #62121e (deep burgundy), #dca771 (warm gold), black, white
   Layout: Mobile-first responsive design
   Typography: Professional and readable hierarchy
*/

:root {
    --primary-color: #62121e;
    --accent-color: #dca771;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f7f5;
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.menu a:hover,
.menu a.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(98, 18, 30, 0.9) 100%);
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===== BUTTONS ===== */
.cta-button,
.submit-button,
.download-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button:hover,
.submit-button:hover,
.download-button:hover {
    background-color: #c89450;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 167, 113, 0.3);
}

.cta-button:active,
.submit-button:active,
.download-button:active {
    transform: translateY(0);
}

/* ===== MAIN CONTENT ===== */
.main-content,
.about-section,
.services-section,
.contact-section {
    padding: 60px 20px;
}

.main-content h2,
.about-section h2,
.services-section h2,
.contact-section h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.main-content h1,
.about-section h1,
.services-section h1,
.contact-section h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.intro-text,
.table-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

/* ===== CONTENT GRID ===== */
.content-grid,
.benefits-grid,
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #555;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    color: var(--accent-color);
}



@media (min-width: 768px) {

    .content-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {

    .content-grid,
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content-card,
.service-card,
.benefit-item {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover,
.service-card:hover,
.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.content-card h3,
.service-card h3,
.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.content-card p,
.service-card p,
.benefit-item p {
    color: #555;
    line-height: 1.7;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background-color: var(--text-light);
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefits-list {
    list-style: none;
    columns: 1;
}

@media (min-width: 768px) {
    .benefits-list {
        columns: 2;
    }
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 50px 30px;
    border-radius: 4px;
    text-align: center;
    margin: 50px 0;
}

.cta-section h2 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 25px;
    font-size: 16px;
}

/* ===== ABOUT LAYOUT ===== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

@media (min-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    text-align: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-content h2 {
    text-align: left;
    margin-bottom: 10px;
}

.about-content h3 {
    color: var(--accent-color);
    text-align: left;
    margin-bottom: 20px;
    font-size: 18px;
}

.about-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.credentials,
.testimonials {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 4px;
    margin: 25px 0;
    border-left: 4px solid var(--accent-color);
}

.credentials h4,
.testimonials h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.credentials ul {
    list-style: none;
    padding-left: 0;
}

.credentials li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

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

blockquote {
    padding: 20px;
    margin: 15px 0;
    border-left: 4px solid var(--accent-color);
    background-color: rgba(220, 167, 113, 0.1);
    font-style: italic;
    color: #555;
}

blockquote footer {
    margin-top: 10px;
    font-style: normal;
    color: #888;
    font-size: 14px;
}

.social-mention {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.social-mention a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.social-mention a:hover {
    color: var(--accent-color);
}

.about-firm {
    background-color: var(--text-light);
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-firm h2 {
    text-align: left;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-firm p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* ===== SERVICES TABLE ===== */
.services-table-wrapper {
    overflow-x: auto;
    margin-bottom: 50px;
    background-color: var(--text-light);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

@media (min-width: 768px) {
    .services-table {
        font-size: 16px;
    }
}

.services-table thead {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.services-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
}

.services-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
}

.services-table tbody tr:hover {
    background-color: rgba(220, 167, 113, 0.05);
}

.services-table tbody tr:last-child td {
    border-bottom: none;
}

.plan-basic,
.plan-premium,
.plan-enterprise {
    font-weight: 600;
    color: var(--accent-color);
}

.services-table .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

/* ===== DOWNLOAD SECTION ===== */
.download-section {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 4px;
    text-align: center;
    margin: 50px 0;
}

.download-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.download-section p {
    margin-bottom: 25px;
    color: #555;
}

/* ===== CONTACT LAYOUT ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-wrapper,
.contact-info-wrapper {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: left;
}

/* ===== FORM STYLES ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(220, 167, 113, 0.1);
}

.submit-button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

/* ===== CONTACT INFO CARDS ===== */
.contact-info-card {
    background-color: rgba(220, 167, 113, 0.1);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
}

.contact-info-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 16px;
}

.contact-info-card p {
    color: #555;
    margin: 0;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

/* ===== SOCIAL LINKS ===== */
.social-title {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* ===== MAP SECTION ===== */
.map-section {
    margin: 50px 0;
}

.map-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.map-section iframe {
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===== BUSINESS HOURS ===== */
.business-hours {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 4px;
    text-align: center;
    margin-top: 50px;
}

.business-hours h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    .hours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hour-item {
    background-color: var(--text-light);
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #555;
}

.hour-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 50px 20px 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-column ul {
    list-style: none;
    font-size: 14px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    opacity: 0.8;
}

.footer-bottom p {
    margin: 5px 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 767px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .menu ul {
        gap: 15px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .main-content h1,
    .about-section h1,
    .services-section h1,
    .contact-section h1 {
        font-size: 28px;
    }

    .main-content h2,
    .about-section h2,
    .services-section h2,
    .contact-section h2 {
        font-size: 22px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .services-table {
        font-size: 12px;
    }

    .services-table th,
    .services-table td {
        padding: 12px 10px;
    }
}

/* ===== ACCESSIBILITY ===== */
a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {

    .header,
    .footer,
    .cta-button,
    .submit-button,
    .download-button {
        display: none;
    }

    body {
        background-color: white;
    }

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