/* Base Styles - Professional Debt Relief Company */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #0d1b2a;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 27, 42, 0.4);
    background: linear-gradient(135deg, #1b263b 0%, #0d1b2a 100%);
}

.btn-secondary {
    background: transparent;
    color: #0d1b2a;
    border: 2px solid #0d1b2a;
}

.btn-secondary:hover {
    background: #0d1b2a;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Enhanced blue accents */
.blue-accent {
    color: #0d1b2a;
    font-weight: 600;
}

.blue-border {
    border-left: 4px solid #0d1b2a;
}

.blue-highlight {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.1) 0%, rgba(27, 38, 59, 0.1) 100%);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(13, 27, 42, 0.2);
}

/* Footer */
footer {
    background-color: #0d1b2a;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(224, 225, 221, 0.1);
}

footer p {
    color: #e0e1dd;
    font-size: 0.9rem;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}
