* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --light-gray: #f5f6fa;
    --medium-gray: #dcdde1;
    --dark-gray: #2f3640;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    background-color: var(--light-gray);
    color: var(--text-color);
    line-height: 1.6;
}

/* En-tête */
header {
    background-color: #2c3e50;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

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

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0rem;
}

.logo {
    height: 70px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.tagline {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
    opacity: 0.8;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #3498db;
}

.main-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem 0;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tagline {
    font-size: 1rem;
    opacity: 0.9;
    display: block;
    margin-top: 0.5rem;
    font-weight: 400;
}

.main-nav {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    padding: 0;
}

.main-nav li:before {
    display: none;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    color: var(--accent-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

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

.page-title {
    margin: 2rem 0 0.5rem 0;
    color: var(--primary-color);
    font-size: 2.2rem;
    text-align: center;
    font-weight: 700;
}

.tprm-definition {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 1.1rem;
}

.tprm-definition span {
    font-weight: 600;
    color: var(--primary-color);
}

.scoring-date {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
    font-size: 1rem;
}

.scoring-date span {
    font-weight: 600;
    color: var(--secondary-color);
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vendor {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: 250px 1fr 350px;
    grid-template-rows: auto auto;
    grid-template-areas: 
        "info features news"
        "info use-cases use-cases";
    border-left: 4px solid transparent;
    position: relative;
}

.rank-1 {
    border-left-color: #2ecc71;
}

.rank-2 {
    border-left-color: #3498db;
}

.rank-3 {
    border-left-color: #f1c40f;
}

.rank-4 {
    border-left-color: #e74c3c;
}

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

.ranking {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #3498db;
    color: white;
    padding: 0.25rem 0.5rem;
    font-weight: bold;
    font-size: 0.8rem;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.rank-1 .ranking {
    background-color: #2ecc71;
}

.rank-2 .ranking {
    background-color: #3498db;
}

.rank-3 .ranking {
    background-color: #f1c40f;
}

.rank-4 .ranking {
    background-color: #e74c3c;
}

.vendor-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    position: relative;
    width: 100%;
}

.vendor-header h2 {
    margin: 0;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vendor-info img {
    max-width: 60px;
    height: auto;
    margin-right: 1rem;
    margin-bottom: 0;
    align-self: center;
    object-fit: contain;
}

.vendor-info {
    grid-area: info;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    position: relative;
    border-right: 1px solid #eee;
    height: 100%;
}

.vendor-info h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.2rem;
    text-align: left;
}

.detailed-scores {
    width: 100%;
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.score-item {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    background-color: #f5f7fa;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.score-item:hover {
    background-color: #edf0f5;
}

.score-label {
    width: 35%;
    font-size: 0.8rem;
    color: #495057;
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
}

.score-bar-container {
    flex: 1;
    height: 8px;
    background-color: #e3e6eb;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 0.7rem;
}

.score-bar {
    height: 100%;
    border-radius: 3px;
}

.rank-1 .score-bar {
    background-color: #2ecc71;
}

.rank-2 .score-bar {
    background-color: #3498db;
}

.rank-3 .score-bar {
    background-color: #f1c40f;
}

.rank-4 .score-bar {
    background-color: #e74c3c;
}

.score-value {
    width: 15%;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    font-size: 1.1rem;
}

.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.badge {
    background-color: #f8f9fa;
    color: #495057;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 600;
}

.badge.editor-choice {
    background-color: #9b59b6;
    color: white;
}

.badge.best-value {
    background-color: #2ecc71;
    color: white;
}

.badge.most-secure {
    background-color: #3498db;
    color: white;
}

.badge.enterprise {
    background-color: #34495e;
    color: white;
}

.badge.fast-implementation {
    background-color: #f39c12;
    color: white;
}

.badge.compliance {
    background-color: #1abc9c;
    color: white;
}

.badge.established {
    background-color: #7f8c8d;
    color: white;
}

.request-demo-btn {
    display: inline-flex;
    align-items: center;
    background-color: #f8f9fa;
    color: #2c3e50;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #e9ecef;
    transition: all 0.2s;
    margin-top: auto;
    font-size: 0.75rem;
    align-self: flex-start;
}

.request-demo-btn:hover {
    background-color: #e9ecef;
}

.request-demo-btn i {
    margin-left: 0.3rem;
    font-size: 0.7rem;
}

.features, .news, .use-cases {
    padding: 1rem;
}

.features {
    grid-area: features;
    padding: 0.8rem 1rem;
    display: flex;
    flex-direction: column;
}

.features h3 {
    color: #2c3e50;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #f0f0f0;
}

.features ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.features ul li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.8rem;
    line-height: 1.3;
}

.features ul li:before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.news {
    grid-area: news;
    border-left: 1px solid #eee;
}

.use-cases {
    grid-area: use-cases;
    border-top: 1px solid #eee;
}

.news-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-item {
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.7rem;
    color: #6c757d;
    margin-bottom: 0.1rem;
}

.news-item p {
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.2;
}

.news-item a {
    text-decoration: none;
    color: inherit;
}

.news-item a:hover p {
    color: #3498db;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}

.industry-tag {
    background-color: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
}

.use-case-desc {
    font-size: 0.8rem;
    line-height: 1.3;
    margin: 0;
}

/* Responsive adjustments for vendor cards */
@media (max-width: 1100px) {
    .vendor {
        grid-template-columns: 220px 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas: 
            "info features"
            "info news"
            "use-cases use-cases";
    }
    
    .news {
        border-left: none;
        border-top: 1px solid #eee;
    }
}

@media (max-width: 768px) {
    .vendor {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        grid-template-areas: 
            "info"
            "features"
            "news"
            "use-cases";
    }
    
    .vendor-header {
        flex-direction: row;
        align-items: center;
        padding-right: 0;
        margin-top: 0;
        position: relative;
    }
    
    .vendor-info img {
        max-width: 50px;
        margin-right: 1rem;
        margin-bottom: 0;
    }
    
    .detailed-scores {
        max-width: 100%;
    }

    .ranking {
        top: 5px;
        right: 5px;
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
}

/* Media query updates for the new grid layout */
@media (max-width: 1100px) {
    .vendor {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "info info"
            "features news"
            "use-cases use-cases";
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 1.5rem 0;
    }

    .header-container {
        align-items: center;
    }

    .main-nav {
        position: static;
        transform: none;
        margin-top: 1.5rem;
        width: 100%;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 2rem;
    }

    .main-nav a {
        padding: 0.3rem 0;
    }

    .vendor {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "info"
            "features"
            "news"
            "use-cases";
        padding: 1.25rem;
        gap: 1.25rem;
    }

    .vendor-info {
        order: -1;
    }
}

/* Filter Section Styles */
.filter-section {
    margin-bottom: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.toggle-filter {
    width: 100%;
    background-color: #f8f9fa;
    border: none;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    border-bottom: 1px solid #e9ecef;
}

.filter-controls {
    padding: 1.5rem;
    display: none;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-controls.active {
    display: block;
}

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

.filter-group h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #2c3e50;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.slider-group {
    margin-bottom: 1rem;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.filter-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.filter-value {
    font-weight: bold;
    color: #3498db;
    min-width: 2rem;
    text-align: right;
}

.score-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    background: #e9ecef;
    border-radius: 4px;
    outline: none;
}

.score-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #3498db;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.score-slider::-webkit-slider-thumb:hover {
    background: #2980b9;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.8rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-item input {
    height: 16px;
    width: 16px;
}

select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    margin-top: 0.5rem;
}

.apply-filters {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.apply-filters:hover {
    background-color: #2980b9;
}

.filter-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

.reset-filters {
    background-color: #f1f1f1;
    color: #333;
    border: 1px solid #ddd;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.reset-filters:hover {
    background-color: #e1e1e1;
}

/* Products Container */
.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-header {
    background-color: #2c3e50;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-header h2 {
    font-size: 1.2rem;
    font-weight: 600;
}

.product-header .ranking {
    position: static;
    padding: 0.3rem 0.6rem;
    box-shadow: none;
}

.product-body {
    padding: 1rem;
}

.scores-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.score-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 0.5rem;
}

.score-label {
    font-size: 0.7rem;
    color: #6c757d;
}

.score-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background-color: #e9ecef;
    color: #495057;
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.updated {
    font-size: 0.8rem;
    color: #6c757d;
}

.details-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.details-btn:hover {
    background-color: #2980b9;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}

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

.footer-column p {
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
    padding-left: 0;
}

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

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

.footer-column ul li a:hover {
    color: var(--accent-color);
    padding-left: 0.3rem;
}

.footer-column i {
    margin-right: 0.7rem;
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
}

.newsletter-form input {
    padding: 0.8rem;
    border: none;
    border-radius: 4px 0 0 4px;
    width: 100%;
}

.newsletter-form button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #f39c12;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .filter-header {
        padding: 0.8rem 1rem;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Methodology Section */
.methodology-section {
    background: var(--white);
    border-radius: 8px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.methodology-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.methodology-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

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

.methodology-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.methodology-icon {
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--secondary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.methodology-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.methodology-details p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.methodology-explanation {
    background: rgba(52, 152, 219, 0.05);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
}

.methodology-explanation p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.methodology-explanation p:last-of-type {
    margin-bottom: 1.5rem;
}

.view-details-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.view-details-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.view-details-link:hover {
    color: #2980b9;
}

.view-details-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .methodology-content {
        grid-template-columns: 1fr;
    }
    
    .methodology-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .methodology-details h3 {
        text-align: center;
    }
    
    .methodology-explanation {
        padding: 1rem;
    }
}

/* Expert Testimonials */
.expert-testimonials {
    margin: 4rem 0;
}

.expert-testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.expert-testimonials h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

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

.testimonial {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-text {
    position: relative;
    padding-left: 2rem;
}

.testimonial-text i {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--secondary-color);
    opacity: 0.3;
    font-size: 1.5rem;
}

.testimonial-text p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary-color);
}

.author-info span {
    font-size: 0.8rem;
    color: #777;
}

@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
    }
}

/* Additional Responsive Fixes */
@media (max-width: 1100px) {
    .vendor-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .detailed-scores {
        max-width: 300px;
    }
}

/* Recognition and Awards Section */
.recognition-section {
    background: var(--white);
    border-radius: 8px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.recognition-section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.recognition-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.recognition-intro {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.awards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(52, 152, 219, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    width: 300px;
    text-align: left;
}

.award-icon {
    color: var(--accent-color);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(241, 196, 15, 0.1);
    flex-shrink: 0;
}

.award-details h3 {
    margin: 0 0 0.3rem 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    border-bottom: none;
    padding-bottom: 0;
}

.award-details p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.featured-logos {
    margin-top: 3rem;
}

.featured-logos p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.featured-logo {
    height: 30px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.featured-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .awards-container {
        flex-direction: column;
        align-items: center;
    }
    
    .award-item {
        width: 100%;
        max-width: 400px;
    }
    
    .logo-container {
        gap: 1.5rem;
    }
    
    .featured-logo {
        height: 25px;
    }
}

/* Helper Classes */
.hidden {
    display: none !important;
}

.features h3, .news h3, .use-cases h3 {
    color: #2c3e50;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #f0f0f0;
}

.news, .use-cases {
    padding: 0.8rem 1rem;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .vendor-info {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}

.website {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-align: center;
}

.website a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.website a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Add styles for methodology page */
.methodology-banner {
    background-color: #f5f8fc;
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.methodology-summary h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2a4c7d;
}

.methodology-summary p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.detailed-methodology {
    margin-bottom: 60px;
}

.methodology-category {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
}

.category-header {
    background-color: #2a4c7d;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.category-header i {
    font-size: 24px;
    margin-right: 15px;
}

.category-header h2 {
    margin: 0;
    font-size: 22px;
}

.category-details {
    padding: 25px;
}

.category-details p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.category-details ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.category-details li {
    margin-bottom: 12px;
    line-height: 1.5;
}

.testing-process {
    margin-bottom: 60px;
}

.testing-process h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2a4c7d;
    font-size: 28px;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.step-number {
    background-color: #3a6ea5;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 20px;
    margin-top: 5px;
}

.step-content {
    background-color: #f8f9fb;
    border-radius: 8px;
    padding: 20px 25px;
    flex-grow: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
    margin-top: 0;
    color: #2a4c7d;
    margin-bottom: 10px;
    font-size: 20px;
}

.step-content p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.5;
}

.analyst-team {
    background-color: #f5f8fc;
    padding: 50px 0;
    margin-bottom: 60px;
    text-align: center;
}

.analyst-team h2 {
    margin-bottom: 40px;
    color: #2a4c7d;
    font-size: 28px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: 260px;
    padding: 25px;
    text-align: center;
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member h3 {
    margin: 0 0 5px;
    color: #2a4c7d;
    font-size: 20px;
}

.team-member .role {
    color: #3a6ea5;
    font-weight: bold;
    margin-bottom: 15px;
}

.team-member .bio {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.methodology-faq {
    max-width: 900px;
    margin: 0 auto 60px;
}

.methodology-faq h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2a4c7d;
    font-size: 28px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #f8f9fb;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.faq-question i {
    color: #3a6ea5;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.download-section {
    background-color: #2a4c7d;
    padding: 50px 0;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 60px;
}

.download-content {
    max-width: 700px;
    margin: 0 auto;
}

.download-content h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 28px;
}

.download-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 18px;
}

.download-button {
    background-color: white;
    color: #2a4c7d;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.download-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.download-button i {
    margin-left: 8px;
}

/* Active state for navigation */
.main-nav ul li a.active {
    background-color: #3a6ea5;
    color: white;
}

/* Responsive adjustments for methodology page */
@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .category-header i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .team-grid {
        gap: 20px;
    }
    
    .team-member {
        width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .team-member {
        width: 100%;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 15px;
        margin-right: 0;
        align-self: center;
    }
}

/* Add or update CTA section styles */
.cta-section {
    background-color: #f5f8fc;
    border-radius: 10px;
    margin: 60px 0;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(to right, #f5f8fc, #e9eff8);
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 35%;
    background-image: url('https://images.unsplash.com/photo-1581092787765-e691aef8564d?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxfDB8MXxyYW5kb218MHx8Y3liZXJzZWN1cml0eXx8fHx8fDE2ODQxNTI5NjI&ixlib=rb-4.0.3&q=80&w=1080');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.cta-content {
    padding: 50px;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.cta-section h2 {
    font-size: 28px;
    color: #2a4c7d;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    max-width: 550px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background-color: #3a6ea5;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(58, 110, 165, 0.3);
}

.cta-button:hover {
    background-color: #2a5a8f;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(58, 110, 165, 0.4);
}

.cta-button i {
    margin-left: 10px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .cta-section::before {
        width: 100%;
        height: 100%;
        opacity: 0.07;
    }
    
    .cta-content {
        padding: 40px 30px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
}

/* What is TPRM Page Styles */
.tprm-intro {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-top: 1rem;
}

.content-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.content-section h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #3498db;
}

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

.point {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.point i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.point h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.point ul {
    list-style-type: none;
    padding: 0;
}

.point ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.point ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
}

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

.step {
    position: relative;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content {
    margin-top: 1rem;
}

.step-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

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

.component {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.component i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.component h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

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

.practice {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.practice h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

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

.challenge {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.challenge i {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.challenge h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .content-section {
        padding: 1rem;
    }
    
    .key-points,
    .lifecycle-steps,
    .components-grid,
    .best-practices,
    .challenges {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        top: -15px;
        left: 15px;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* Framework Navigation */
.framework-navigation {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.framework-navigation h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.nav-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-button i {
    font-size: 1.2rem;
    color: #3498db;
}

/* Framework Details */
.framework-details {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 2rem;
    margin: 2rem 0;
}

.framework-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.framework-logo {
    max-width: 150px;
    height: auto;
}

.framework-meta {
    flex: 1;
}

.framework-meta p {
    margin: 0.5rem 0;
    color: #666;
}

.framework-content {
    margin-top: 2rem;
}

/* NIST Functions */
.nist-functions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.nist-function {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nist-function:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.function-icon {
    width: 50px;
    height: 50px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.function-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.nist-function h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.nist-function p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Framework Application */
.framework-application {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.application-points {
    list-style: none;
    padding: 0;
}

.application-points li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.application-points li:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.application-points i {
    color: #2ecc71;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* Framework Evaluation */
.framework-evaluation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.strengths, .limitations {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.strengths h3, .limitations h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.strengths ul, .limitations ul {
    list-style: none;
    padding: 0;
}

.strengths li, .limitations li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.strengths i {
    color: #2ecc71;
}

.limitations i {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .framework-header {
        flex-direction: column;
        text-align: center;
    }
    
    .framework-logo {
        margin-bottom: 1rem;
    }
    
    .nav-buttons {
        grid-template-columns: 1fr;
    }
    
    .nist-functions {
        grid-template-columns: 1fr;
    }
    
    .framework-evaluation {
        grid-template-columns: 1fr;
    }
}

/* Style for hybrid framework steps */
.hybrid-steps {
    max-width: 900px;
    margin: 30px auto;
}

.hybrid-steps .step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px 25px 25px 70px; /* Added left padding to make room for the number */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.hybrid-steps .step:hover {
    transform: translateY(-5px);
}

.hybrid-steps .step-number {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 2; /* Ensure it's above other content */
}

.hybrid-steps .step-content {
    flex-grow: 1;
}

.hybrid-steps .step-content h3 {
    margin-top: 0;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 20px;
}

.hybrid-steps .step-content p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hybrid-steps .step {
        padding: 65px 20px 20px 20px; /* Adjust padding for mobile */
    }
    
    .hybrid-steps .step-number {
        top: 20px;
        left: 20px;
        transform: none;
    }
}

/* Regulations Page Styles */
.regulation-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.regulation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.regulation-card h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.25rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 10px;
}

.regulation-details strong {
    color: #1a73e8;
}

.highlight-card {
    border-left: 4px solid #1a73e8;
    background-color: #e8f0fe;
}

.compliance-tip {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    padding: 12px;
    margin-top: 15px;
    border: 1px dashed #1a73e8;
}

.compliance-tip h4 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #1a73e8;
    font-size: 1rem;
}

.two-column {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.two-column .regulation-card {
    flex: 1;
    margin-bottom: 0;
}

.navigation-section {
    background-color: #f8f9fa;
    padding: 30px 0;
    margin-bottom: 40px;
}

.nav-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    color: #2c3e50;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: #1a73e8;
    color: #fff;
    transform: translateY(-2px);
}

.nav-button i {
    margin-right: 8px;
}

.implementation-steps {
    margin: 30px 0;
}

.step {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.step-number {
    background-color: #1a73e8;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #2c3e50;
}

.practice-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.practice-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.practice-list i {
    color: #28a745;
    margin-right: 10px;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .two-column {
        flex-direction: column;
    }
    
    .nav-buttons {
        flex-direction: column;
    }
    
    .nav-button {
        width: 100%;
    }
}

/* Header Logo Styles */
.main-header .logo {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.main-header .logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.main-header .logo-image:hover {
    transform: scale(1.05);
}
