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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.primary-navigation {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    border-radius: 8px;
}

.brand-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.menu-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.menu-links a:hover,
.menu-links a.active-link {
    color: var(--primary-color);
}

.hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.main-heading {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-visual {
    flex: 1;
    max-width: 500px;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.cta-button-3d {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 8px 16px rgba(245,158,11,0.3);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button-3d:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15), 0 12px 24px rgba(245,158,11,0.4);
}

.section-header {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.daily-motivation {
    padding: 60px 20px;
    background: var(--bg-light);
}

.inspiration-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.quote-text {
    font-size: 24px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.quote-author {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 600;
}

.features-overview {
    padding: 80px 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
}

.about-preview {
    padding: 80px 20px;
    background: var(--bg-light);
}

.about-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 16px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s;
}

.read-more-link:hover {
    color: var(--secondary-color);
}

.services-section {
    padding: 80px 20px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.service-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(37,99,235,0.15);
}

.service-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-box p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.price-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-weight: 600;
}

.testimonials-area {
    padding: 80px 20px;
    background: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-info strong {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.client-info span {
    color: var(--text-light);
    font-size: 14px;
}

.blog-preview {
    padding: 80px 20px;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
    color: var(--text-dark);
}

.blog-card p {
    padding: 0 20px 15px;
    color: var(--text-light);
}

.read-link {
    display: inline-block;
    padding: 0 20px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.centered-action {
    text-align: center;
}

.lead-capture {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-container > p {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.faq-section {
    padding: 80px 20px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-item h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 20px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p,
.footer-column li {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 20px;
    display: none;
    z-index: 9999;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cookie-text a {
    color: var(--primary-color);
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-btn.accept-all {
    background: var(--success-color);
    color: white;
}

.cookie-btn.customize {
    background: var(--border-color);
    color: var(--text-dark);
}

.cookie-btn.decline {
    background: var(--error-color);
    color: white;
}

.thank-you-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-light);
}

.close-modal:hover {
    color: var(--text-dark);
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.company-story {
    padding: 80px 20px;
}

.story-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
}

.mission-vision {
    padding: 80px 20px;
    background: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.team-section {
    padding: 80px 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member .bio {
    color: var(--text-light);
    line-height: 1.6;
}

.achievements-area {
    padding: 80px 20px;
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 12px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 16px;
}

.why-choose-us {
    padding: 80px 20px;
}

.reasons-list {
    max-width: 900px;
    margin: 0 auto;
}

.reason-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.reason-icon {
    font-size: 32px;
    color: var(--success-color);
}

.reason-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.reason-text p {
    color: var(--text-light);
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.blog-listing {
    padding: 60px 20px;
}

.blog-posts-grid {
    display: grid;
    gap: 40px;
}

.blog-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    gap: 30px;
}

.post-image img {
    width: 400px;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 30px;
    flex: 1;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.post-date,
.post-category {
    font-size: 14px;
    color: var(--text-light);
}

.post-category {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-post-card h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.blog-post-card h2 a {
    color: var(--text-dark);
    text-decoration: none;
}

.blog-post-card h2 a:hover {
    color: var(--primary-color);
}

.read-more-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.newsletter-signup {
    padding: 80px 20px;
    background: var(--bg-light);
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box h2 {
    margin-bottom: 15px;
}

.newsletter-box p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
}

.contact-info-section {
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-card h3 {
    margin-bottom: 15px;
}

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

.contact-form-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-section {
    padding: 80px 20px;
}

.map-placeholder {
    background: var(--bg-light);
    padding: 80px;
    text-align: center;
    border-radius: 12px;
    color: var(--text-light);
    font-size: 18px;
}

.blog-post {
    background: white;
}

.post-header {
    padding: 60px 20px;
    background: var(--bg-light);
}

.post-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.post-excerpt {
    font-size: 20px;
    color: var(--text-light);
}

.post-featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 60px 20px;
}

.post-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 17px;
}

.post-footer {
    padding: 40px 20px;
    background: var(--bg-light);
}

.back-to-blog a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

@media (max-width: 768px) {
    .hero-banner {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .main-heading {
        font-size: 32px;
    }
    
    .about-flex,
    .story-content {
        flex-direction: column;
    }
    
    .menu-links {
        gap: 15px;
        font-size: 14px;
    }
    
    .blog-post-card {
        flex-direction: column;
    }
    
    .post-image img {
        width: 100%;
        height: 250px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}