* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header-top {
    background-color: #f5f5f5;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.header-top .container {
    text-align: right;
}

.contact-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

.contact-link:hover {
    text-decoration: underline;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-block;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    padding: 10px 16px;
    display: block;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: #0066cc;
    background-color: #f0f7ff;
    transform: translateY(-1px);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    list-style: none;
    min-width: 220px;
    z-index: 1000;
    border: none;
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 0;
    animation: fadeInDown 0.3s ease;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
    z-index: 999;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

.dropdown-menu li {
    border-bottom: none;
}

.dropdown-menu a {
    padding: 12px 20px;
    white-space: nowrap;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background-color: #f0f7ff;
    transform: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 60px 0;
    border-bottom: none;
}

.hero-content h2 {
    font-size: 18px;
    font-weight: normal;
    color: #333;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* HIPAA Software Section */
.hipaa-software {
    padding: 40px 0;
    background-color: #fff;
}

.hipaa-software h2 {
    color: #0066cc;
    font-size: 28px;
    margin-bottom: 20px;
}

.hipaa-software p {
    margin-bottom: 15px;
    font-size: 16px;
}

.hipaa-software ul {
    margin-left: 30px;
    margin-top: 15px;
}

.hipaa-software li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    background-color: #fff;
}

.content-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    position: relative;
}

.content-header h3 {
    color: #0066cc;
    font-size: 24px;
    margin-bottom: 5px;
}

.content-header .subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
}

.content-header h1 {
    color: #2c3e50;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.content-header .expert-tag {
    color: #666;
    font-size: 18px;
    font-style: italic;
}

.complypak-section {
    margin-bottom: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.complypak-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.complypak-section h2 {
    color: #0066cc;
    font-size: 26px;
    margin-bottom: 10px;
}

.complypak-section h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
}

.complypak-section p {
    font-size: 16px;
    line-height: 1.8;
}

.compliance-solutions {
    padding: 30px;
    background-color: #fff;
}

.compliance-solutions h2 {
    color: #0066cc;
    font-size: 26px;
    margin-bottom: 20px;
}

.compliance-solutions p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.compliance-solutions ul {
    margin-left: 30px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.compliance-solutions li {
    margin-bottom: 10px;
    font-size: 16px;
}

.compliance-solutions .cta {
    margin-top: 25px;
    padding: 24px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
}

/* Audit Services */
.audit-services {
    padding: 30px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.audit-services h2 {
    color: #0066cc;
    font-size: 26px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 50px 0 30px;
    margin-top: 60px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    flex: 1;
    min-width: 250px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-info .map-link a {
    color: #0066cc;
    text-decoration: none;
}

.contact-info .map-link a:hover {
    text-decoration: underline;
}

.copyright {
    flex: 1;
    min-width: 250px;
    text-align: right;
}

.copyright p {
    margin-bottom: 10px;
    font-size: 14px;
}

.copyright .mobile-link a {
    color: #0066cc;
    text-decoration: none;
}

.copyright .mobile-link a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu {
        position: static;
        display: block;
        box-shadow: none;
        border: none;
        margin-left: 20px;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    .copyright {
        text-align: center;
    }

    .content-header h1 {
        font-size: 24px;
    }

    .complypak-section,
    .compliance-solutions {
        padding: 20px;
    }
}

/* Features Page Styles */
.features-intro {
    margin-bottom: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.features-intro p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.features-intro .audit-types {
    margin-left: 30px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.features-intro .audit-types li {
    margin-bottom: 10px;
    font-size: 16px;
}

.features-list {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #fff;
}

.features-list ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.features-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    border-bottom: 1px solid #eee;
}

.features-list li:before {
    content: "•";
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-cta {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

.features-cta p {
    font-size: 18px;
    margin: 0;
}

.compliance-solutions-title {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #0066cc;
    text-align: center;
}

.compliance-solutions-title h1 {
    color: #333;
    font-size: 32px;
    margin: 0;
}

/* Audits Page Styles */
.page-title {
    color: #0066cc;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.audits-content {
    margin-top: 40px;
}

.audits-two-column {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.audits-left-column,
.audits-right-column {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audits-left-column:hover,
.audits-right-column:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.audits-left-column ul,
.audits-right-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.audits-left-column li,
.audits-right-column li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    border-bottom: 1px solid #ddd;
}

.audits-left-column li:before,
.audits-right-column li:before {
    content: "•";
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.audits-left-column li:last-child,
.audits-right-column li:last-child {
    border-bottom: none;
}

.audits-right-column h3 {
    color: #0066cc;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0066cc;
}

.audits-section {
    margin-bottom: 30px;
    padding: 35px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audits-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.audits-section h3 {
    color: #0066cc;
    font-size: 22px;
    margin-bottom: 15px;
}

.audits-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 20px;
}

.audits-section li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
}

.audits-section li:before {
    content: "•";
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.audits-cta {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

.audits-cta p {
    font-size: 18px;
    margin: 0;
    color: #0066cc;
}

@media (max-width: 768px) {
    .audits-two-column {
        flex-direction: column;
    }

    .audits-left-column,
    .audits-right-column {
        min-width: 100%;
    }
}

/* Version Pages Styles */
.version-features {
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.version-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.version-features li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    border-bottom: 1px solid #ddd;
}

.version-features li:before {
    content: "•";
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.version-features li:last-child {
    border-bottom: none;
}

.version-cta {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

.version-cta p {
    font-size: 18px;
    margin: 0;
}

.enterprise-note {
    margin: 30px 0;
    padding: 20px;
    background-color: #fff3cd;
    text-align: center;
}

.enterprise-note p {
    font-size: 18px;
    margin: 0;
    color: #856404;
}

/* Audit Areas Page Styles */
.audit-areas-content {
    margin-top: 40px;
}

.audit-areas-content > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.audit-areas-list {
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.audit-areas-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.audit-areas-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    border-bottom: 1px solid #ddd;
}

.audit-areas-list li:before {
    content: "•";
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.audit-areas-list li:last-child {
    border-bottom: none;
}

/* Special Audits Page Styles */
.special-audits-intro {
    margin-top: 40px;
}

.special-audit-item {
    margin-bottom: 40px;
    padding: 35px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special-audit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.special-audit-item h3 {
    color: #0066cc;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

.special-audit-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Compliance Page Styles */
.compliance-services {
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.compliance-numbered-list {
    list-style: decimal;
    margin-left: 30px;
    padding-left: 0;
}

.compliance-numbered-list li {
    padding: 10px 0;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.compliance-strategy {
    margin: 40px 0;
    padding: 30px;
    background-color: #fff;
}

.compliance-strategy h2 {
    color: #0066cc;
    font-size: 24px;
    margin-bottom: 20px;
}

.compliance-strategy > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.compliance-strategy > ul > li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    border-bottom: 1px solid #eee;
}

.compliance-strategy > ul > li:before {
    content: "•";
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.compliance-strategy > ul > li:last-child {
    border-bottom: none;
}

.compliance-strategy ul ul {
    list-style: none;
    margin: 10px 0 10px 20px;
    padding: 0;
}

.compliance-strategy ul ul li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    border-bottom: none;
}

.compliance-strategy ul ul li:before {
    content: "◦";
    color: #0066cc;
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* Compliance Resources Page Styles */
.compliance-resources-list {
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.compliance-resources-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.compliance-resources-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    line-height: 1.8;
    border-bottom: 1px solid #ddd;
}

.compliance-resources-list li:before {
    content: "•";
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.compliance-resources-list li:last-child {
    border-bottom: none;
}

/* Contact Page Styles */
.contact-thank-you {
    margin: 30px 0;
    padding: 24px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.15);
}

.contact-thank-you p {
    font-size: 18px;
    color: #155724;
    margin: 0;
    font-weight: bold;
}

/* Contact Page Two-Column Layout */
.contact-two-column {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    align-items: flex-start;
}

.contact-left-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-right-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-services {
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-services h3 {
    color: #0066cc;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-services ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-services li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    border-bottom: 1px solid #ddd;
}

.contact-services li:before {
    content: "•";
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.contact-services li:last-child {
    border-bottom: none;
}

.contact-info-section {
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.contact-info-section h3 {
    color: #0066cc;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info-section .phone-label {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.contact-info-section h2 {
    color: #0066cc;
    font-size: 24px;
    margin: 10px 0;
}

.contact-map-section {
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-map-section h3 {
    color: #0066cc;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.map-container {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-link-text {
    text-align: center;
    margin-top: 10px;
}

.map-link-text a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.map-link-text a:hover {
    color: #004499;
    text-decoration: underline;
}

.contact-form-section {
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 968px) {
    .contact-two-column {
        flex-direction: column;
    }

    .contact-left-column,
    .contact-right-column {
        width: 100%;
    }
}

.contact-form-section h2 {
    color: #0066cc;
    font-size: 26px;
    margin-bottom: 25px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.required {
    color: #dc3545;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
    padding: 14px 36px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

/* Affiliations/Our Team Page Styles */
.affiliations-list {
    margin: 40px 0;
}

.affiliation-item {
    margin-bottom: 30px;
    padding: 35px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.affiliation-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.affiliation-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: normal;
}

.affiliation-item h3 a {
    color: #0066cc;
    text-decoration: underline;
    font-weight: bold;
}

.affiliation-item h3 a:hover {
    color: #004499;
    text-decoration: underline;
}

.affiliation-item h3 a:visited {
    color: #0066cc;
}

.affiliation-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Request Demo Page Styles */
.demo-two-column {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    align-items: flex-start;
}

.demo-left-column {
    flex: 1;
    min-width: 0;
}

.demo-right-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.demo-intro {
    margin-bottom: 30px;
    padding: 35px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.demo-intro p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2c3e50;
}

.demo-intro ul {
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0;
}

.demo-intro li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    border-bottom: 1px solid #e0e0e0;
}

.demo-intro li:before {
    content: "•";
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.demo-intro li:last-child {
    border-bottom: none;
}

.demo-description {
    padding: 35px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.demo-description p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #2c3e50;
}

.demo-description p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #0066cc;
}

.demo-security-image {
    width: 100%;
    margin-bottom: 20px;
}

.security-graphic {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 0, 0.03) 2px, rgba(0, 255, 0, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 0, 0.03) 2px, rgba(255, 255, 0, 0.03) 4px);
    opacity: 0.5;
}

.security-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.system-protected {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    padding: 20px 40px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    letter-spacing: 1px;
}

.lock-icon {
    font-size: 48px;
    filter: drop-shadow(0 0 10px rgba(0, 150, 255, 0.8));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.demo-form-section {
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.demo-form-section h2 {
    color: #0066cc;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

@media (max-width: 968px) {
    .demo-two-column {
        flex-direction: column;
    }

    .demo-left-column,
    .demo-right-column {
        width: 100%;
    }

    .security-content {
        flex-direction: column;
        gap: 15px;
    }

    .system-protected {
        font-size: 20px;
        padding: 15px 30px;
    }

    .lock-icon {
        font-size: 36px;
    }
}

