.pmma-page {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

.pmma-page .section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.pmma-page .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #032f60;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.pmma-page .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #032f60;
}

.pmma-page .section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.pmma-page .hero-section {
    background: linear-gradient(135deg, #032f60 0%, #0047b1 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.pmma-page .hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pmma-page .hero-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.pmma-page .hero-button {
    display: inline-block;
    background: #fff;
    color: #032f60;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pmma-page .hero-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pmma-page .intro-section {
    background: #f8f9fa;
}

.pmma-page .intro-content {
    font-size: 16px;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

.pmma-page .intro-content p {
    margin-bottom: 20px;
}

.pmma-page .specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.pmma-page .specs-table th,
.pmma-page .specs-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pmma-page .specs-table th {
    background: #032f60;
    color: #fff;
    font-weight: 600;
}

.pmma-page .specs-table tr:last-child td {
    border-bottom: none;
}

.pmma-page .specs-table tr:nth-child(even) {
    background: #fafafa;
}

.pmma-page .properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.pmma-page .property-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pmma-page .property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.pmma-page .property-name {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pmma-page .property-value {
    font-size: 24px;
    font-weight: 700;
    color: #032f60;
}

.pmma-page .pros-cons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.pmma-page .pros-section,
.pmma-page .cons-section {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.pmma-page .pros-section h3,
.pmma-page .cons-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.pmma-page .pros-section h3 {
    color: #28a745;
}

.pmma-page .cons-section h3 {
    color: #dc3545;
}

.pmma-page .pros-section h3::before,
.pmma-page .cons-section h3::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
}

.pmma-page .pros-section h3::before {
    content: '\f00c';
}

.pmma-page .cons-section h3::before {
    content: '\f00d';
}

.pmma-page .pros-list,
.pmma-page .cons-list {
    list-style: none;
    padding: 0;
}

.pmma-page .pros-list li,
.pmma-page .cons-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.pmma-page .pros-list li:last-child,
.pmma-page .cons-list li:last-child {
    border-bottom: none;
}

.pmma-page .pros-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #28a745;
    position: absolute;
    left: 0;
}

.pmma-page .cons-list li::before {
    content: '\f057';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #dc3545;
    position: absolute;
    left: 0;
}

.pmma-page .applications-section {
    background: #f8f9fa;
}

.pmma-page .applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.pmma-page .application-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.pmma-page .application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.pmma-page .application-icon {
    width: 60px;
    height: 60px;
    background: #032f60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 24px;
}

.pmma-page .application-title {
    font-size: 18px;
    font-weight: 600;
    color: #032f60;
    margin-bottom: 10px;
}

.pmma-page .application-desc {
    font-size: 14px;
    color: #666;
}

.pmma-page .faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.pmma-page .faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.pmma-page .faq-question {
    background: #032f60;
    color: #fff;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.pmma-page .faq-question:hover {
    background: #0047b1;
}

.pmma-page .faq-question::after {
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}

.pmma-page .faq-item.active .faq-question::after {
    transform: rotate(135deg);
}

.pmma-page .faq-answer {
    background: #fff;
    padding: 20px;
    color: #555;
    display: none;
}

.pmma-page .faq-item.active .faq-answer {
    display: block;
}

.pmma-page .cta-section {
    background: linear-gradient(135deg, #032f60 0%, #0047b1 100%);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.pmma-page .cta-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pmma-page .cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .pmma-page .hero-section h1 {
        font-size: 32px;
    }

    .pmma-page .hero-section p {
        font-size: 16px;
    }

    .pmma-page .section-title {
        font-size: 24px;
    }

    .pmma-page .pros-cons-container {
        grid-template-columns: 1fr;
    }

    .pmma-page .specs-table th,
    .pmma-page .specs-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pmma-page .section {
        padding: 40px 15px;
    }

    .pmma-page .hero-section {
        padding: 60px 15px;
    }

    .pmma-page .hero-section h1 {
        font-size: 28px;
    }

    .pmma-page .properties-grid {
        grid-template-columns: 1fr;
    }
}