:root {
    --primary-color: #2c2c2c;
    --accent-color: #d4a373;
    --bg-color: #fcfbf9;
    --text-color: #333333;
    --white: #ffffff;
    --gray-light: #f4f1ea;
    --border-color: #e2ded8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-color);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--accent-color);
}

.auth-btns {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-outline {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary-sm {
    text-decoration: none;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-primary-sm:hover {
    background: #bc8a59;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1579783902614-a3fb3927b675?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    color: var(--white);
    padding: 140px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #bc8a59;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.full-width {
    width: 100%;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Added grid-4 for 4 pricing plans layout */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-top: 4px solid var(--accent-color);
}

.service-card i {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: #666;
    font-size: 15px;
}

.page-header {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-header p {
    color: #bbb;
}

.auth-section {
    padding: 60px 0;
    background: var(--bg-color);
}

.auth-container {
    max-width: 450px;
    margin: 0 auto;
}

.auth-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.auth-card h2 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 26px;
}

.auth-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.auth-redirect {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.auth-redirect a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.content-section {
    background: var(--white);
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.15);
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.pricing-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.pricing-card .price span {
    font-size: 14px;
    color: #777;
    font-weight: normal;
}

.pricing-card .features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card .features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0efe9;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card .features li i.fa-check {
    color: #2e7d32;
}

.pricing-card .features li i.fa-times {
    color: #c62828;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 15px;
}

.legal-content h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.legal-content p, .legal-content ul {
    color: #555;
    margin-bottom: 15px;
    font-size: 15px;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    font-size: 14px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}