.issue-detail {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}
.issue-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.issue-header h1 {
    font-size: 2.2rem;
    margin: 0;
    color: #333;
}
.issue-price {
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
}
.issue-service-link {
    margin-bottom: 30px;
}
.issue-service-link a {
    color: #2a5bd7;
    text-decoration: none;
    font-weight: 500;
}
.issue-service-link a:hover {
    text-decoration: underline;
}
.issue-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 40px;
}
.issue-form {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}
.issue-form h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .issue-header { flex-direction: column; align-items: flex-start; gap: 15px; }
    .issue-header h1 { font-size: 1.8rem; }
}

.issues-section {
    margin-top: 60px;
}
.issues-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}
.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.issue-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #2a5bd7;
}
.issue-icon {
    font-size: 2.5rem;
    min-width: 50px;
    text-align: center;
}
.issue-content {
    flex: 1;
}
.issue-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}
.issue-content h3 a {
    color: #333;
    text-decoration: none;
}
.issue-content h3 a:hover {
    color: #2a5bd7;
}
.issue-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 10px;
}
.issue-price {
    color: #ff6b00;
    font-weight: bold;
    margin: 10px 0;
}
.issue-link {
    display: inline-block;
    color: #2a5bd7;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
}
.issue-link:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .issues-grid { grid-template-columns: 1fr; }
    .issue-card { flex-direction: column; text-align: center; align-items: center; }
}

.scroll-roll {
    position:fixed;
    bottom:90px;
    right:20px;
    width:50px;
    height:50px;
    border-radius:50%;
    background-color:#2a5bd7;
    color:#fff;
    border:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 10px rgba(0,0,0,.2);
    transition:opacity .3s,visibility .3s;
    z-index:1001;
}
.scroll-top,
.scroll-menu {
    opacity:0;
    visibility:hidden;
}
.scroll-top.visible,
.scroll-menu.visible {
    opacity:1;
    visibility:visible;
}
@media (max-width: 768px) {
    .scroll-roll {
        bottom:100px;
        width:44px;
        height:44px;
    }
}
.location-list-page {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.location-list-page h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
}
.location-list-page > p {
    text-align: center;
    margin-bottom: 40px;
    color: #6c757d;
}
.location-group {
    margin-bottom: 50px;
}
.location-group h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2a5bd7;
    display: inline-block;
}
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.location-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px 15px;
    transition: all 0.3s;
}
.location-item a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
.location-item:hover {
    background: #2a5bd7;
}
.location-item:hover a {
    color: white;
}
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

.brands-page {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.brands-page h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}
.brands-page > p {
    text-align: center;
    margin-bottom: 40px;
    color: #6c757d;
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 25px;
}
.brand-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}
.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #2a5bd7;
}
.brand-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.brand-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}
.brand-name {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}
@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 15px;
    }
}

.contacts-page {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.contacts-page h1 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.contacts-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
}
.contact-block {
    margin-bottom: 25px;
}
.contact-block h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2a5bd7;
}
.contact-block p {
    margin: 5px 0;
    color: #444;
}
.contact-block a {
    color: #333;
    text-decoration: none;
}
.contact-block a:hover {
    color: #2a5bd7;
}
.contacts-map {
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.contacts-form h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
}
@media (max-width: 768px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contacts-map {
        height: 300px;
    }
}
.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    color: #333;
}
.policy-container h1, .policy-container h2, .policy-container h3 {
    margin-top: 1.5em;
}
.policy-container p {
    margin: 1em 0;
}
.policy-container ul, .policy-container ol {
    margin: 1em 0;
    padding-left: 1.5em;
}
.policy-container .placeholder {
    background: #f9f9c9;
    padding: 2px 4px;
    font-family: monospace;
    font-weight: bold;
}