:root {
    --primary-color: #9B92C8;
    --secondary-color: #7B6FB0;
    --accent-color: #584D8B;
    --background-color: #ffffff;
    --text-color: #2d3436;
    --spacing: 2rem;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h1 {
    display: none;
    font-size: 2rem;
    margin: 0;
    cursor: default;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a,
.nav-links .dropdown-toggle {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links .dropdown-toggle:hover {
    color: var(--secondary-color);
}

.nav-links .active {
    color: var(--secondary-color);
}

.contact-btn {
    background-color: var(--secondary-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--accent-color);
}

.blog-btn {
    background-color: #00FFFF;
    color: black !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.blog-btn:hover {
    background-color: #00E6E6;
}

.blog-btn.active {
    background-color: #00CCCC;
    color: black !important;
}

/* Base Hero Styles */
.page-hero, 
.voice-hero,
.web-hero,
.blog-hero {
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin: var(--spacing) 0;
    border-radius: 10px;
    padding: 2rem;
    position: relative;
}

.page-hero .hero-content,
.voice-hero .hero-content,
.web-hero .hero-content,
.blog-hero .hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.page-hero h2, 
.voice-hero h2,
.web-hero h2,
.blog-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero p, 
.voice-hero p,
.web-hero p,
.blog-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Page Hero Specific */
.page-hero {
    background: linear-gradient(135deg, 
        rgba(155, 146, 200, 0.85), 
        rgba(123, 111, 176, 0.75)
    );
}

/* Blog Hero Specific */
.blog-hero {
    background-image: url('images/blog_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(155, 146, 200, 0.85), 
        rgba(123, 111, 176, 0.75)
    );
    pointer-events: none;
    z-index: 1;
}

/* Voice Hero Specific */
.voice-hero {
    background-image: url('images/phone_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.voice-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(155, 146, 200, 0.85), 
        rgba(123, 111, 176, 0.75)
    );
    pointer-events: none;
    z-index: 1;
}

/* Web Hero Specific */
.web-hero {
    background-image: url('images/websol_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.web-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(155, 146, 200, 0.85), 
        rgba(123, 111, 176, 0.75)
    );
    pointer-events: none;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/cloud-computing-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    margin: var(--spacing) 0;
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(155, 146, 200, 0.85), 
        rgba(123, 111, 176, 0.75)
    );
    pointer-events: none;
    z-index: 1;
}

/* Index Hero - Special layout with character image */
.index-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.index-hero-content {
    text-align: left;
}

.index-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 380px;
}

.character-image {
    width: 380px;
    height: auto;
    object-fit: contain;
}

.index-hero h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: left;
}

.index-hero h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
    font-weight: 400;
}

.index-hero-features {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.8;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.index-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button, .secondary-button {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button {
    background-color: var(--accent-color);
    color: white;
}

.secondary-button {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-button:hover, .secondary-button:hover {
    transform: translateY(-2px);
}

.secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.solution-card {
    padding: 2rem;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease;
}

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

.solution-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Service Pillars Section */
.service-pillars {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

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

.pillars-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Pillars Layout - Two Column */
.pillars-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.pillars-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 380px;
}

.pillars-illustration {
    width: 380px;
    height: auto;
    object-fit: contain;
}

/* Accordion Styles */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.accordion-item {
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(155, 146, 200, 0.1);
}

.accordion-header.active {
    background-color: rgba(155, 146, 200, 0.15);
}

.accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
}

.pillar-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.accordion-title {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.accordion-title h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 600;
}

.accordion-arrow {
    font-size: 0.9rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.accordion-content.active {
    max-height: 3000px;
    padding: 0 2rem 2rem 6.5rem;
}

.accordion-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-weight: 500;
}

.accordion-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.pillars-scheduler-link {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(155, 146, 200, 0.2);
}

.scheduler-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(88, 77, 139, 0.3);
}

.scheduler-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(88, 77, 139, 0.4);
}

.differentiator-box {
    background: rgba(155, 146, 200, 0.15);
    border-left: 3px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
}

.differentiator-box strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.strategic-note {
    font-style: italic;
    color: var(--primary-color);
    padding: 1rem;
    background: rgba(155, 146, 200, 0.1);
    border-radius: 5px;
    margin: 1rem 0;
}

.pillar-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.pillar-cta:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.learn-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

/* Additional Styles for Solution Pages */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.service-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, 
        rgba(155, 146, 200, 0.85), 
        rgba(123, 111, 176, 0.75)
    );
    border-radius: 10px;
    margin: 2rem 0;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.feature-list,
.service-features,
.pricing-block ul,
.footer-section ul {
    list-style: none;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.feature-list li,
.service-features li,
.pricing-block li,
.footer-section li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.feature-list li:before,
.service-features li:before,
.pricing-block li:before,
.footer-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066cc;
}

/* Pricing Blocks */
.pricing-block {
    background: #fff;
    padding: 2rem;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-block h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-block ul {
    list-style: none;
    padding-left: 2rem;
    margin: 1rem 0;
}

.pricing-block li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.pricing-block li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.pricing-card .price {
    margin: 1.5rem 0;
}

.pricing-card .amount {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.pricing-card .period {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-card .features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-card .features li:last-child {
    border-bottom: none;
}

/* Features Grid */
.features-section {
    padding: 4rem 0;
    text-align: center;
}

.features-section h3 {
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--primary-color);
}

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

.feature-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.feature-item h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Quality Statement Page Styles */
.quality-statement {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2.5rem;
}

.quality-intro {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    padding: 0 8rem;
}

.quality-promises {
    margin-bottom: 4rem;
    padding: 0 8rem;
}

.quality-promises h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 1.8rem;
}

.promise-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.promise-item h4 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.promise-item h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 60%;
    height: 2px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
}

.promise-item p {
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.promise-item strong {
    color: var(--accent-color);
    font-weight: 600;
}

.quality-conclusion {
    text-align: center;
    margin: 6rem auto;
    padding: 6rem 3rem;
    position: relative;
    background-image: url('images/detail_or.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    color: white;
    overflow: hidden;
    max-width: 1200px;
}

.quality-conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    opacity: 0.85;
    z-index: 1;
}

.quality-conclusion p {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 0 auto;
    padding: 0 4rem;
    max-width: 900px;
}

.quality-content {
    padding: 4rem 0;
}

.quality-section {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.quality-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

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

.quality-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.quality-item h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.quality-item ul {
    list-style: none;
    padding: 0;
}

.quality-item ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.quality-item ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.quality-certification {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.quality-certification h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.quality-certification ul {
    list-style: none;
    padding: 0;
}

.quality-certification ul li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.quality-certification ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-buttons .cta-button,
.cta-buttons .secondary-button {
    min-width: 200px;
    text-align: center;
    font-weight: 500;
}

.quality-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.quality-link:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .quality-intro,
    .quality-promises {
        padding: 0 4rem;
    }
}

@media (max-width: 768px) {
    .quality-statement {
        padding: 2rem 1rem;
    }

    .quality-intro,
    .quality-promises {
        padding: 0 1rem;
    }

    .quality-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .promise-item {
        padding: 1.5rem;
    }

    .quality-conclusion {
        padding: 2rem 1.5rem 5rem;
    }

    .quality-conclusion p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

/* Welcome Section Styles */
.welcome-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin: -2rem auto 4rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.welcome-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: center;
}

.welcome-content .highlight {
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.welcome-content .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.welcome-content .highlight:hover::after {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .welcome-section {
        margin: -1rem 1rem 3rem;
    }

    .welcome-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: left;
    }
}

/* Welcome Section Enhancement */
.welcome-section {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.welcome-content {
    background: #ffffff;
    border-radius: 10px;
    padding: 3rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.welcome-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.welcome-section p {
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.pricing-summary {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.price-item {
    text-align: center;
    min-width: 200px;
}

.price-item .price {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-item .period {
    color: #666;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.service-card {
    padding: 2rem;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease;
}

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

.service-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
}

/* CTA Section Enhancement */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
}

.cta-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Contact Form Styles */
.contact-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(var(--secondary-color-rgb), 0.1);
}

.submit-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }

    .submit-btn {
        width: 100%;
    }
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing);
}

.footer-section {
    padding: 0 1rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.footer-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--accent-color);
    padding-left: 0.5rem;
}

.footer-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.footer-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    background-color: #000000;
    color: #ffffff;
    margin-top: 2rem;
    width: 100%;
}

footer p a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer p a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section ul li {
        padding-left: 0;
    }

    .footer-section ul li::before {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .index-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .index-hero-image {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

    .character-image {
        width: 100%;
        max-width: 380px;
    }

    .index-hero-content {
        text-align: center;
    }

    .index-hero h3 {
        font-size: 1.8rem;
        text-align: center;
    }

    .index-hero h4 {
        font-size: 1.2rem;
        text-align: center;
    }

    .index-hero-features {
        text-align: center;
    }

    .pillars-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pillars-image {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

    .pillars-illustration {
        width: 100%;
        max-width: 380px;
    }

    .voice-hero h2 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-image {
        order: -1;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .pillar-card {
        flex-direction: column;
        text-align: center;
    }

    .pillar-number {
        align-self: center;
        margin-bottom: 1rem;
    }

    .pillar-content h3,
    .pillar-content h4,
    .pillar-content p {
        text-align: left;
    }

    .pillars-header h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

/* Style dropdown toggle button to look like nav links */
.dropdown-toggle {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-toggle:focus {
    outline: none;
}

.dropdown-toggle:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
    border-radius: 2px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 0.5rem 0;
    z-index: 1000;
}

.dropdown-content li {
    display: block;
    padding: 0;
    margin: 0;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    display: block;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: var(--secondary-color);
    padding-left: 2rem;
}

.dropdown-content .active {
    background-color: var(--secondary-color);
    color: white !important;
}

.dropdown-content .active:hover {
    background-color: var(--secondary-color);
    color: white !important;
    padding-left: 1.5rem;
}

/* Dropdown display is now controlled by JavaScript for accessibility */
.dropdown.active .dropdown-content {
    display: block;
}

/* Keep hover state for mouse users as progressive enhancement */
.dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        background-color: transparent;
        box-shadow: none;
        padding-left: 1.5rem;
    }

    .dropdown-content a {
        padding: 0.5rem 1rem;
    }

    .nav-links .dropdown-content li a {
        font-size: 0.9rem;
        color: #666;
    }
}

/* Expertise Section Styles */
.expertise-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.expertise-content h2 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.expertise-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

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

.expertise-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.expertise-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.expertise-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.expertise-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-list li {
    background-color: #f0f2f5;
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.tech-list li:hover {
    background-color: var(--accent-color);
    color: white;
}

.experience-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.2;
}

.experience-badge span:first-child {
    font-size: 1.8rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .expertise-section {
        padding: 3rem 1rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-card {
        padding: 1.5rem;
    }

    .experience-badge {
        width: 60px;
        height: 60px;
        font-size: 0.7rem;
    }

    .experience-badge span:first-child {
        font-size: 1.4rem;
    }
}

/* PBX Calculator Styles */
.calculator {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.calculator-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calculator h3 {
    color: #0066cc;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
}

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

.form-section {
    background: white;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-section h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.form-group label {
    font-weight: 500;
    color: #555;
}

.form-group input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

.calculator .cta-button {
    width: 100%;
    max-width: 200px;
    margin: 1.5rem auto;
    display: block;
}

.cost-summary {
    background: white;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cost-summary h4 {
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.4rem;
}

.disclaimer {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.cost-items {
    display: grid;
    gap: 1rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.cost-value {
    font-weight: 600;
    color: #0066cc;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .calculator {
        padding: 1rem;
        margin: 1rem;
    }
    
    .calculator-form {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
}

/* Cloud Fax Package Styles */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.package-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.package-card h4 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-card ul li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.package-card ul li:last-child {
    border-bottom: none;
}

.package-card.custom {
    background: #f8f9fa;
    border: 2px dashed #0066cc;
}

.package-card.custom h4 {
    color: #0066cc;
}

@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card {
        margin-bottom: 1rem;
    }
}

/* Audio Player Styles */
.audio-player {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

.audio-player audio {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

.audio-player audio::-webkit-media-controls-panel {
    background-color: var(--background-color);
}

.audio-player audio::-webkit-media-controls-play-button,
.audio-player audio::-webkit-media-controls-timeline {
    color: var(--secondary-color);
}

.audio-player a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.audio-player a:hover {
    color: var(--accent-color);
}

/* Blog Page Styles */
.blog-intro {
    margin: var(--spacing) 0;
    text-align: center;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.blog-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.blog-categories {
    margin: var(--spacing) 0;
}

.blog-categories h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.category-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.category-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.featured-posts {
    margin: var(--spacing) 0;
}

.featured-posts h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing);
}

.post-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.post-card.featured {
    border-left: 4px solid var(--primary-color);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-category {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.post-date {
    color: #666;
}

.post-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.4;
}

.post-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #555;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.recent-posts {
    margin: var(--spacing) 0;
}

.recent-posts h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.posts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.post-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.post-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.post-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.post-item p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.blog-cta {
    background: linear-gradient(135deg, 
        rgba(155, 146, 200, 0.1), 
        rgba(123, 111, 176, 0.1)
    );
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    margin: var(--spacing) 0;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .blog-content h3,
    .blog-categories h3,
    .featured-posts h3,
    .recent-posts h3,
    .cta-content h3 {
        font-size: 1.5rem;
    }
}

/* Individual Blog Post Styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing) 0;
}

.post-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.3;
}

.post-excerpt {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.post-content {
    line-height: 1.8;
    color: var(--text-color);
}

.post-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.post-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem 0;
    color: var(--secondary-color);
}

.post-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.post-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.post-cta {
    background: linear-gradient(135deg, 
        rgba(155, 146, 200, 0.1), 
        rgba(123, 111, 176, 0.1)
    );
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid var(--primary-color);
}

.post-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.post-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.post-navigation {
    margin-bottom: 2rem;
}

.back-to-blog {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: var(--secondary-color);
}

.share-post {
    text-align: center;
}

.share-post h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.share-link {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.share-link:hover {
    background: var(--secondary-color);
}

/* Responsive Design for Blog Posts */
@media (max-width: 768px) {
    .blog-post {
        padding: 1rem 0;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-excerpt {
        font-size: 1.1rem;
    }
    
    .post-content h2 {
        font-size: 1.5rem;
    }
    
    .post-content h3 {
        font-size: 1.3rem;
    }
    
    .post-content p,
    .post-content li {
        font-size: 1rem;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* Application Pages Styles */
.apple-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f5f5f7, #e8e8ed);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-top: 1rem;
    font-weight: 500;
    color: #1d1d1f;
    border: 1px solid #d2d2d7;
}

.apple-icon {
    font-size: 1.2rem;
}

.features-section {
    margin: var(--spacing) 0;
}

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

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing);
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-card p {
    line-height: 1.6;
    color: #555;
}

/* SyncPhone page enhancements */
.app-store-badge {
    height: 40px;
    display: inline-block;
    vertical-align: middle;
}

.features-content .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.features-content .feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.technical-content p {
    margin-bottom: 1rem;
}

.development-section,
.compliance-section,
.dashboard-section,
.workflow-section {
    margin: var(--spacing) 0;
}

.development-content,
.compliance-content,
.dashboard-content,
.workflow-content {
    max-width: 1200px;
    margin: 0 auto;
}

.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #e0e0e0;
}

.roadmap-item.current {
    border-left-color: #4CAF50;
}

.roadmap-item.in-progress {
    border-left-color: #FF9800;
}

.roadmap-item.planned {
    border-left-color: #9E9E9E;
}

.roadmap-status {
    font-size: 2rem;
    flex-shrink: 0;
}

.roadmap-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.roadmap-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.current {
    background: #E8F5E8;
    color: #2E7D32;
}

.status-badge.in-progress {
    background: #FFF3E0;
    color: #F57C00;
}

.status-badge.planned {
    background: #F5F5F5;
    color: #616161;
}

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

.compliance-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.compliance-item:hover {
    transform: translateY(-3px);
}

.compliance-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.compliance-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.compliance-item p {
    line-height: 1.6;
    color: #555;
}

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

.dashboard-feature {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dashboard-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.dashboard-feature p {
    line-height: 1.6;
    color: #555;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.step-content p {
    line-height: 1.6;
    color: #555;
}

.technical-section {
    margin: var(--spacing) 0;
}

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

/* SyncPhone: ensure What is SyncPhone section matches site style */
.technical-section .technical-content {
    max-width: 900px;
    padding: 0 2rem;
}

.technical-section .technical-content p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.technical-section .section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* PText: Screenshots and App Store badges - no effects */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto;
}

.screenshot-card {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #f0f0f0;
}

.screenshot-card:hover {
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.screenshot-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.app-badge-link {
    display: inline-block;
    text-decoration: none;
    transition: none;
}

.app-badge-link:hover {
    transform: none;
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.app-badge-image {
    height: 40px;
    display: block;
}

/* SyncPhone: Screenshots Carousel */
.screenshots-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, 
        rgba(155, 146, 200, 0.05), 
        rgba(123, 111, 176, 0.05)
    );
}

.screenshots-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.screenshots-carousel {
    position: relative;
    max-width: 900px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 15px;
}

.screenshot-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.screenshot-slide.active {
    display: block;
}

.screenshots-carousel .screenshot-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(155, 146, 200, 0.15);
    border: 1px solid rgba(155, 146, 200, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshots-carousel .screenshot-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.spec-category {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.spec-category h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.spec-category ul {
    list-style: none;
    padding: 0;
}

.spec-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.spec-category li:last-child {
    border-bottom: none;
}



.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive Design for Application Pages */
@media (max-width: 768px) {
    .feature-grid,
    .compliance-grid,
    .dashboard-features,
    .spec-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .roadmap-item,
    .workflow-step {
        flex-direction: column;
        text-align: center;
    }
    
    .roadmap-status,
    .step-number {
        align-self: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .screenshots-section {
        padding: 2rem 0;
        margin: 2rem 0;
    }
    
    .screenshots-content {
        padding: 0 1rem;
    }
    
    .screenshots-carousel {
        margin: 1rem auto;
    }
    
    .screenshots-carousel .screenshot-card {
        padding: 1rem;
    }
    
    .screenshots-carousel .screenshot-image {
        max-width: 100%;
    }
}

/* Technical Depth Statement Section */
.technical-depth-statement {
    margin: 4rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, 
        rgba(155, 146, 200, 0.1), 
        rgba(123, 111, 176, 0.1)
    );
    border-radius: 10px;
}

.depth-statement-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.depth-statement-content h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.depth-quote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.depth-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.depth-quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    bottom: -2rem;
    right: 1rem;
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

/* Testimonials Section */
.testimonials-section {
    margin: var(--spacing) 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, 
        rgba(155, 146, 200, 0.05), 
        rgba(123, 111, 176, 0.05)
    );
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 15px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(155, 146, 200, 0.15);
    border: 1px solid rgba(155, 146, 200, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: serif;
    line-height: 1;
    opacity: 0.3;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.testimonial-author span {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(155, 146, 200, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Responsive Design for Technical Depth Statement */
@media (max-width: 768px) {
    .technical-depth-statement {
        padding: 2rem 0;
        margin: 2rem 0;
    }

    .depth-statement-content {
        padding: 0 1rem;
    }

    .depth-statement-content h3 {
        font-size: 1.4rem;
    }

    .depth-quote {
        font-size: 1.1rem;
        padding: 1.5rem;
        line-height: 1.6;
    }

    .depth-quote::before,
    .depth-quote::after {
        font-size: 3rem;
    }
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 2rem 0;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: 0.5rem;
        left: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .testimonial-author h4 {
        font-size: 1.2rem;
    }
    
    .stars {
        font-size: 1.3rem;
    }
}
