/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --elegance-gold: #E8B339;
    --professional-blue: #2C5AA0;
    --success-green: #7CB342;
    --sophisticated-charcoal: #34495E;
    --light-grey: #7f8c8d;
    --background-grey: #f8f9fa;
    --white: #ffffff;
    --header-height: 80px;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--sophisticated-charcoal);
    background-color: var(--white);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
}

.circle-gold {
    background: var(--elegance-gold);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.circle-blue {
    background: var(--professional-blue);
    bottom: 0;
    left: 0;
}

.circle-green {
    background: var(--success-green);
    bottom: 0;
    right: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-primary {
    font-size: 18px;
    font-weight: bold;
    color: var(--professional-blue);
    text-transform: uppercase;
    line-height: 1;
}

.brand-secondary {
    font-size: 16px;
    font-weight: bold;
    color: var(--elegance-gold);
    text-transform: uppercase;
    line-height: 1;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--sophisticated-charcoal);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--elegance-gold);
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--elegance-gold);
    transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.cta-button {
    background: var(--elegance-gold);
    color: var(--sophisticated-charcoal);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--sophisticated-charcoal);
    color: var(--elegance-gold);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--sophisticated-charcoal);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white) !important;
    box-shadow: var(--shadow-medium) !important;
    z-index: 999;
    padding: 20px;
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: var(--sophisticated-charcoal);
    border-bottom: 1px solid var(--background-grey);
    font-weight: 500;
}

.mobile-nav a:hover {
    color: var(--elegance-gold);
}

/* Main Content */
.main-content {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* Hero Sections */
.hero {
    background: linear-gradient(135deg, var(--professional-blue) 0%, var(--elegance-gold) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.page-hero {
    background: linear-gradient(135deg, var(--professional-blue) 0%, var(--elegance-gold) 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-style: italic;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--professional-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--success-green);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--professional-blue);
    border: 2px solid var(--professional-blue);
}

.btn-secondary:hover {
    background: var(--professional-blue);
    color: var(--white);
}

/* Sections */
.features,
.about-content,
.services-overview,
.resources-content,
.blog-content {
    padding: 80px 20px;
}

.features {
    background: var(--background-grey);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--professional-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--light-grey);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.feature-icon.gold {
    background: var(--elegance-gold);
}

.feature-icon.blue {
    background: var(--professional-blue);
}

.feature-icon.green {
    background: var(--success-green);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--sophisticated-charcoal);
    margin-bottom: 20px;
}

.feature-card p {
    color: var(--light-grey);
    line-height: 1.8;
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    color: var(--professional-blue);
    font-size: 2rem;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    border-left: 4px solid var(--elegance-gold);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--professional-blue);
    display: block;
}

.stat-label {
    color: var(--light-grey);
    font-weight: 500;
    margin-top: 10px;
}

/* Timeline Styles */
.experience-timeline {
    padding: 80px 20px;
    background: var(--background-grey);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--elegance-gold);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 0;
    left: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 24px;
    right: -6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--professional-blue);
}

.timeline-item:nth-child(odd)::before {
    left: -6px;
    right: auto;
}

.timeline-date {
    position: absolute;
    top: 0;
    right: -100px;
    width: 80px;
    text-align: center;
    font-weight: bold;
    color: var(--elegance-gold);
    font-size: 14px;
}

.timeline-item:nth-child(odd) .timeline-date {
    left: -100px;
    right: auto;
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.timeline-content h3 {
    color: var(--professional-blue);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.timeline-content h4 {
    color: var(--elegance-gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--sophisticated-charcoal);
    line-height: 1.6;
}

/* Skills Section */
.skills-section {
    padding: 80px 20px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.skill-category {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    border-top: 4px solid var(--elegance-gold);
}

.skill-category h3 {
    color: var(--professional-blue);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    padding: 10px 0;
    color: var(--sophisticated-charcoal);
    border-bottom: 1px solid var(--background-grey);
    position: relative;
    padding-left: 25px;
}

.skill-category li:last-child {
    border-bottom: none;
}

.skill-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* Service Detail Styles */
.service-detail {
    background: var(--white);
    margin-bottom: 60px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.service-header {
    background: var(--background-grey);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.service-title h2 {
    color: var(--professional-blue);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.service-subtitle {
    color: var(--light-grey);
    font-size: 1.1rem;
    font-style: italic;
}

.service-content {
    padding: 40px;
}

.service-description h3 {
    color: var(--sophisticated-charcoal);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-description h4 {
    color: var(--professional-blue);
    font-size: 1.2rem;
    margin: 30px 0 15px 0;
}

.service-description ul {
    margin-left: 20px;
    margin-bottom: 30px;
}

.service-description li {
    margin-bottom: 10px;
    color: var(--sophisticated-charcoal);
    line-height: 1.6;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-item {
    text-align: center;
    background: var(--background-grey);
    padding: 30px 20px;
    border-radius: 10px;
}

.benefit-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--elegance-gold);
    margin-bottom: 10px;
}

.benefit-text {
    color: var(--sophisticated-charcoal);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Blog Styles */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-post {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-post.featured {
    border-left: 5px solid var(--elegance-gold);
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.post-category {
    background: var(--professional-blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: bold;
}

.post-date {
    color: var(--light-grey);
    padding: 5px 0;
}

.post-title {
    margin-bottom: 20px;
}

.post-title a {
    color: var(--sophisticated-charcoal);
    text-decoration: none;
    transition: var(--transition);
}

.post-title a:hover {
    color: var(--professional-blue);
}

.featured .post-title {
    font-size: 1.8rem;
}

.post-excerpt {
    color: var(--light-grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--elegance-gold);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--professional-blue);
}

/* Sidebar Styles */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.sidebar-widget h3 {
    color: var(--professional-blue);
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--elegance-gold);
    padding-bottom: 10px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px;
    border: 2px solid var(--background-grey);
    border-radius: 5px;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--elegance-gold);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: var(--sophisticated-charcoal);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--background-grey);
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--professional-blue);
}

.category-list span {
    color: var(--light-grey);
    font-size: 12px;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post h4 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.recent-post h4 a {
    color: var(--sophisticated-charcoal);
    text-decoration: none;
    transition: var(--transition);
}

.recent-post h4 a:hover {
    color: var(--professional-blue);
}

.recent-date {
    color: var(--light-grey);
    font-size: 12px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: var(--background-grey);
    color: var(--sophisticated-charcoal);
    padding: 5px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 12px;
    transition: var(--transition);
}

.tag:hover {
    background: var(--elegance-gold);
    color: var(--white);
}

/* Resources Styles */
.resource-section {
    margin-bottom: 80px;
}

.resource-section h2 {
    color: var(--professional-blue);
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-description {
    color: var(--light-grey);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.resource-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.resource-card.premium {
    border: 2px solid var(--elegance-gold);
}

.resource-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--elegance-gold);
    color: var(--sophisticated-charcoal);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.resource-card h3 {
    color: var(--sophisticated-charcoal);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.resource-card p {
    color: var(--light-grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.resource-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--background-grey);
    border-radius: 10px;
}

.resource-type,
.resource-size {
    font-size: 14px;
    color: var(--sophisticated-charcoal);
}

.resource-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--professional-blue);
}

.premium-section {
    background: var(--background-grey);
    padding: 60px;
    border-radius: 20px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--sophisticated-charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--background-grey);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--elegance-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.inquiry-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    max-width: 800px;
    margin: 0 auto;
}

.service-inquiry {
    background: var(--background-grey);
    padding: 80px 20px;
}

.inquiry-content h2 {
    text-align: center;
    color: var(--professional-blue);
    font-size: 2rem;
    margin-bottom: 20px;
}

.inquiry-content > p {
    text-align: center;
    color: var(--light-grey);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--professional-blue) 0%, var(--elegance-gold) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Newsletter Archive */
.newsletter-archive-cta {
    background: var(--professional-blue);
    color: var(--white);
    padding: 60px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
}

.archive-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.archive-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--sophisticated-charcoal);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--elegance-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.footer-section p,
.footer-section a {
    color: var(--light-grey);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--elegance-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--light-grey);
    padding-top: 20px;
    text-align: center;
    color: var(--light-grey);
}

.footer-bottom a {
    color: var(--light-grey);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--elegance-gold);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--light-grey);
}

.modal-close:hover {
    color: var(--sophisticated-charcoal);
}

#modal-title {
    color: var(--professional-blue);
    margin-bottom: 30px;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tool-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.tool-card h3 {
    color: var(--professional-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.tool-card p {
    color: var(--light-grey);
    line-height: 1.6;
    margin-bottom: 25px;
}

.resource-request-cta {
    background: var(--elegance-gold);
    color: var(--sophisticated-charcoal);
    padding: 60px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Package Styles */
.package-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.package-item {
    background: var(--background-grey);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.package-item h5 {
    color: var(--professional-blue);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.package-item p {
    color: var(--sophisticated-charcoal);
    font-size: 0.9rem;
    line-height: 1.4;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.format-item {
    background: var(--background-grey);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.format-item h5 {
    color: var(--success-green);
    font-size: 1rem;
    margin-bottom: 10px;
}

.format-item p {
    color: var(--sophisticated-charcoal);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Legal Content Styles */
.legal-content {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content h1 {
    color: var(--professional-blue);
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--light-grey);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.legal-section h2 {
    color: var(--professional-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--elegance-gold);
    padding-bottom: 10px;
}

.legal-section h3 {
    color: var(--sophisticated-charcoal);
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--sophisticated-charcoal);
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--sophisticated-charcoal);
}

.contact-info {
    background: var(--background-grey);
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.contact-info a {
    color: var(--professional-blue);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--elegance-gold);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-item::before {
        left: 24px;
        right: auto;
    }
    
    .timeline-item:nth-child(odd)::before {
        left: 24px;
        right: auto;
    }
    
    .timeline-date {
        left: -50px;
        right: auto;
        width: 60px;
        font-size: 12px;
    }
    
    .timeline-item:nth-child(odd) .timeline-date {
        left: -50px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block !important;
    }

    .mobile-nav.active {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .features-grid,
    .skills-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero,
    .page-hero {
        padding: 60px 15px;
    }

    .features,
    .about-content,
    .services-overview,
    .resources-content,
    .blog-content,
    .experience-timeline,
    .skills-section {
        padding: 60px 15px;
    }

    .feature-card,
    .resource-card,
    .service-detail {
        padding: 25px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 30px;
    }

    .brand-primary,
    .brand-secondary {
        font-size: 14px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .circle {
        width: 12px;
        height: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-item::before {
        left: 14px;
    }
    
    .timeline-date {
        left: -45px;
        width: 50px;
        font-size: 11px;
    }

    .legal-content {
        padding: 60px 15px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section {
        padding: 20px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .mobile-nav,
    .btn,
    .modal {
        display: none !important;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .hero,
    .page-hero {
        background: none;
        color: var(--sophisticated-charcoal);
        padding: 20px 0;
    }
    
    body {
        font-size: 12px;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: var(--sophisticated-charcoal) !important;
    }
}

/* Animation for smooth loading */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-card,
.resource-card,
.blog-post,
.service-detail {
    animation: fadeIn 0.6s ease-out;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 2px solid var(--elegance-gold);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-light: 0 2px 10px rgba(0,0,0,0.3);
        --shadow-medium: 0 5px 20px rgba(0,0,0,0.4);
    }
    
    .btn {
        border: 2px solid currentColor;
    }
.newsletter-archive-cta .btn-secondary {
    background: var(--white);
    color: var(--professional-blue);
    border: 2px solid var(--white);
}

.newsletter-archive-cta .btn-secondary:hover {
    background: var(--elegance-gold);
    color: var(--sophisticated-charcoal);
    border-color: var(--elegance-gold);
}