/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

a{
    text-decoration: none;
}

.logo-hub {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 6px;
    height: 1.5rem;
    border: 2px solid;
    border-image: linear-gradient(135deg, #8b5cf6, #3b82f6) 1;
    border-radius: 0.375rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
}

.hub-text {
    font-size: 0.875rem;
    font-weight: 600;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: rgb(37, 99, 235);
}

.nav-link.active {
    color: rgb(37, 99, 235);
    font-weight: 600;
}

/* Add top padding to main content to account for fixed header */
main {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 1rem;
    background-color: #ffffff;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Text */
.hero-text {
    max-width: 600px;
    opacity: 0;
    transform: translateX(-50px);
}

.tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    padding: 0.2rem 0.5rem;
    border-radius: 1.5rem;
    margin-bottom: 0.75rem;
    margin-right: 0.75rem;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tagline-icon {
    font-size: 1rem;
    color: #6b7280;
}

.tagline-icon i {
    font-size: 0.875rem;
}

.tagline-text {
    font-size: 0.6rem;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.05em;
}

.tagline-separator {
    color: #9ca3af;
    font-weight: 300;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #374151;
}

.hero-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary {
    background-color: rgb(37, 99, 235);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: rgb(29, 78, 216);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: #000000;
    border: 2px solid #9ca3af;
}

.btn-secondary:hover {
    border-color: #6b7280;
    background-color: #f9fafb;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(50px);
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Process Section */
.process {
    padding: 5rem 1rem;
    background-color: #f9fafb;
}

.process-steps {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.process-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-direction: column;
}

.step:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #000000;
}

.step-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive Process Section */
@media (max-width: 1024px) {
    .process {
        padding: 3rem 1rem;
    }
    
    .process-title {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .step {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .process-title {
        font-size: 1.75rem;
    }
    
    .process-subtitle {
        font-size: 1.125rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        align-self: center;
    }
}

/* FocusFlow Section */
.focusflow {
    padding: 5rem 1rem;
    background-color: #ffffff;
}

.focusflow-container {
    max-width: 1200px;
    margin: 0 auto;
}

.focusflow-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.focusflow-text {
    max-width: 600px;
    opacity: 0;
    transform: translateX(-50px);
}

.focusflow-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
    line-height: 1.2;
}

.focusflow-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.benefits {
    margin-bottom: 2.5rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.benefit-text {
    color: #374151;
    line-height: 1.6;
    font-size: 1rem;
}

.focusflow-cta {
    margin-top: 2rem;
}

.focusflow-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(50px);
}

.focusflow-img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Responsive FocusFlow Section */
@media (max-width: 1024px) {
    .focusflow-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .focusflow-title {
        font-size: 2rem;
    }
    
    .benefit {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .focusflow {
        padding: 3rem 1rem;
    }
    
    .focusflow-title {
        font-size: 1.75rem;
    }
    
    .focusflow-description {
        font-size: 1rem;
    }
    
    .benefit {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .benefit-icon {
        align-self: center;
    }
}

/* Results Section */
.results {
    padding: 5rem 1rem;
    background-color: #f9fafb;
}

.results-container {
    max-width: 1200px;
    margin: 0 auto;
}

.results-header {
    text-align: center;
    margin-bottom: 4rem;
}

.results-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.results-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.metric {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.metric:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 1rem;
    color: #374151;
    font-weight: 600;
}

/* Responsive Results Section */
@media (max-width: 1024px) {
    .results {
        padding: 3rem 1rem;
    }
    
    .results-title {
        font-size: 2rem;
    }
    
    .results-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .results-title {
        font-size: 1.75rem;
    }
    
    .results-subtitle {
        font-size: 1.125rem;
    }
    
    .results-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .metric {
        padding: 1.5rem 1rem;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
}

/* Pillars Section */
.pillars {
    padding: 5rem 1rem;
    background-color: #ffffff;
}

.pillars-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pillars-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pillars-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.pillars-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.pillars-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pillar {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background-color: #f9fafb;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    opacity: 0;
    transform: translateY(30px);
}

.pillar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.pillar-icon i {
    font-size: 1.25rem;
}

.pillar-content {
    flex: 1;
    padding-top: 0.5rem;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.pillar-description {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.125rem;
}

/* Responsive Pillars Section */
@media (max-width: 1024px) {
    .pillars {
        padding: 3rem 1rem;
    }
    
    .pillars-title {
        font-size: 2rem;
    }
    
    .pillar {
        padding: 2rem;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pillars-title {
        font-size: 1.75rem;
    }
    
    .pillars-subtitle {
        font-size: 1.125rem;
    }
    
    .pillar {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .pillar-icon {
        align-self: center;
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
    
    .pillar-content {
        padding-top: 0;
    }
    
    .pillar-title {
        font-size: 1.25rem;
    }
    
    .pillar-description {
        font-size: 1rem;
    }
}

/* Problems Section */
.problems {
    padding: 5rem 1rem;
    background: #3b82f6;
}

.problems-container {
    max-width: 800px;
    margin: 0 auto;
}

.problems-header {
    text-align: center;
    margin-bottom: 3rem;
}

.problems-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.problems-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.problems-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problem-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.problem-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.problem-checkbox {
    display: none;
}

.problem-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    width: 100%;
}

.checkbox-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-icon i {
    font-size: 0.75rem;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.problem-checkbox:checked + .problem-label .checkbox-icon {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.problem-checkbox:checked + .problem-label .checkbox-icon i {
    opacity: 1;
}

.problem-text {
    font-size: 1.125rem;
    color: #ffffff;
    font-weight: 500;
}

.problems-result {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.5s ease-out;
    backdrop-filter: blur(10px);
}

.result-message {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.result-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Responsive Problems Section */
@media (max-width: 1024px) {
    .problems {
        padding: 3rem 1rem;
    }
    
    .problems-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .problems-title {
        font-size: 1.75rem;
    }
    
    .problem-label {
        padding: 1.25rem;
    }
    
    .problem-text {
        font-size: 1rem;
    }
    
    .result-message {
        font-size: 1.25rem;
    }
    
    .result-description {
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 1rem;
    background-color: #ffffff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.testimonials-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: #f9fafb;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    color: rgb(37, 99, 235);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Responsive Testimonials Section */
@media (max-width: 1024px) {
    .testimonials {
        padding: 3rem 1rem;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 1.75rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.125rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
}

/* FAQ Section */
.faq {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

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

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.faq-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    flex: 1;
    margin-right: 1rem;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Responsive FAQ Section */
@media (max-width: 1024px) {
    .faq {
        padding: 3rem 1rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-subtitle {
        font-size: 1.125rem;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .question-text {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 1rem;
    background: #3b82f6;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text {
    color: #ffffff;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.contact-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    color: rgb(37, 99, 235);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-text {
    color: #18191b;
    font-size: 1rem;
    line-height: 1.5;
}

.hubspot-partner-logo {
    max-width: 400px;
    height: auto;
    margin-top: 2rem;
    opacity: 0.9;
    transition: opacity 0.2s ease;
    border-radius: 20px;
}

.hubspot-partner-logo:hover {
    opacity: 1;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    display: block;
}

.form-input,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: #374151;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgb(37, 99, 235);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-full {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Responsive Contact Section */
@media (max-width: 1024px) {
    .contact {
        padding: 3rem 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-description {
        font-size: 1.125rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.75rem;
    }
    
    .hubspot-partner-logo {
        max-width: 200px;
        margin-top: 1.5rem;
    }
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: #ffffff;
    padding: 3rem 1rem 1rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo-container {
    font-size: 1.5rem;
}

.footer-logo .logo-hub {
    width: 4.5rem;
    height: 1.5rem;
}

.footer-logo .hub-text {
    font-size: 0.875rem;
}

.footer-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: rgb(37, 99, 235);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.contact-item i {
    color: rgb(37, 99, 235);
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.875rem;
    }
    
    main {
        padding-top: 70px;
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem 1rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.25rem;
    }
    
    .footer-subtitle {
        font-size: 1rem;
    }
}

/* About Page Styles */
.about-hero {
    padding: 6rem 1rem 4rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-text {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.about-hero-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #8b5cf6;
    margin-bottom: 1.5rem;
}

.about-tagline-icon {
    color: #8b5cf6;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #000000;
    line-height: 1.1;
}

.about-hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.about-hero-visual {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease 0.2s;
}

.about-hero-visual.animate {
    opacity: 1;
    transform: translateX(0);
}

.visual-cards {
    position: relative;
    height: 400px;
}

.visual-card {
    position: absolute;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 200px;
    text-align: center;
}

.visual-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.card-1 {
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #ffffff;
    transform: rotate(-5deg);
}

.card-1:hover {
    transform: rotate(-5deg) translateY(-8px);
}

.card-2 {
    top: 80px;
    right: 0;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    color: #ffffff;
    transform: rotate(5deg);
}

.card-2:hover {
    transform: rotate(5deg) translateY(-8px);
}

.card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: #ffffff;
}

.card-3:hover {
    transform: translateX(-50%) rotate(-2deg) translateY(-8px);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.card-text {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.about-story {
    padding: 5rem 1rem;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000000;
}

.about-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-content-sections {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    position: relative;
}

.about-content-sections::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-sections-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-section {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
    margin: 0 auto;
    border-radius: 2px;
}

.section-content {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.section-text:last-child {
    margin-bottom: 0;
}

/* Contact Page Styles */
.contact-hero {
    padding: 6rem 1rem 4rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.contact-hero-text {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.contact-hero-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.contact-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #8b5cf6;
    margin-bottom: 1.5rem;
}

.contact-tagline-icon {
    color: #8b5cf6;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #000000;
    line-height: 1.1;
}

.contact-hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #374151;
}

.benefit-item i {
    color: #10b981;
    font-size: 1.125rem;
}

.contact-hero-form {
    width: 100%;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.contact-hero-form.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6, #06b6d4);
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000000;
}

.form-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.contact-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #374151;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.contact-form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.contact-form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-radius: 0.375rem;
    background-color: #ffffff;
    cursor: pointer;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.contact-checkbox:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m13.854 3.646-7.5 7.5a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6 10.293l7.146-7.147a.5.5 0 0 1 .708.708z'/%3e%3c/svg%3e");
}

.checkbox-label {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    cursor: pointer;
}

.contact-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-submit-btn:hover::before {
    left: 100%;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.contact-info {
    padding: 5rem 1rem;
    background-color: #ffffff;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-content {
    text-align: center;
}

.contact-info-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #000000;
}

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

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-detail-content {
    flex: 1;
}

.contact-detail-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
}

.contact-detail-text {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.875rem;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-hero {
        padding: 4rem 1rem 3rem 1rem;
        min-height: 70vh;
    }
    
    .contact-hero-content {
        min-height: 50vh;
    }
    
    .contact-hero-form {
        max-width: 500px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 1rem 2rem 1rem;
        min-height: 60vh;
    }
    
    .contact-hero-content {
        min-height: 40vh;
    }
    
    .contact-hero-form {
        max-width: 100%;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-description {
        font-size: 1.125rem;
    }
    
    .contact-form-container {
        padding: 1rem;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
    
    .form-subtitle {
        font-size: 0.875rem;
    }
    
    .contact-info-title {
        font-size: 2rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .contact-detail-item {
        padding: 1.5rem;
    }
}

.cta-section {
    padding: 5rem 1rem;
}

/* Terms Page Styles */
.terms-hero {
    padding: 6rem 1rem 4rem 1rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    text-align: center;
}

.terms-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.terms-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.terms-content {
    padding: 5rem 1rem;
    background-color: #ffffff;
}

.terms-container {
    max-width: 800px;
    margin: 0 auto;
}

.terms-text {
    line-height: 1.8;
}

.terms-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.terms-section-title:first-child {
    margin-top: 0;
}

.terms-paragraph {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.terms-list {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.terms-list li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Terms Page Responsive */
@media (max-width: 1024px) {
    .terms-hero {
        padding: 4rem 1rem 3rem 1rem;
    }
    
    .terms-hero-title {
        font-size: 2.5rem;
    }
    
    .terms-content {
        padding: 3rem 1rem;
    }
}

@media (max-width: 768px) {
    .terms-hero {
        padding: 3rem 1rem 2rem 1rem;
    }
    
    .terms-hero-title {
        font-size: 2rem;
    }
    
    .terms-hero-description {
        font-size: 1.125rem;
    }
    
    .terms-content {
        padding: 2rem 1rem;
    }
    
    .terms-section-title {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    .terms-paragraph,
    .terms-list {
        font-size: 1rem;
    }
    
    .terms-list {
        padding-left: 1.5rem;
    }
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #374151;
}

.cta-description {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive About Page */
@media (max-width: 1024px) {
    .about-hero {
        padding: 4rem 1rem 3rem 1rem;
        min-height: 70vh;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .visual-cards {
        height: 300px;
    }
    
    .visual-card {
        width: 160px;
        padding: 1.5rem;
    }
    
    .card-icon {
        font-size: 1.5rem;
    }
    
    .card-text {
        font-size: 0.875rem;
    }
    
    .about-story,
    .about-content-sections,
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .about-title,
    .section-title,
    .cta-title {
        font-size: 2rem;
    }
    
    .section-content {
        padding: 2rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 1rem 2rem 1rem;
        min-height: 60vh;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-description {
        font-size: 1.125rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .visual-cards {
        height: 250px;
    }
    
    .visual-card {
        width: 140px;
        padding: 1rem;
    }
    
    .card-icon {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .card-text {
        font-size: 0.75rem;
    }
    
    .about-title,
    .section-title,
    .cta-title {
        font-size: 1.75rem;
    }
    
    .about-description,
    .cta-description {
        font-size: 1.125rem;
    }
    
    .section-content {
        padding: 1.5rem;
    }
    
    .section-text {
        font-size: 0.875rem;
        text-align: left;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}
