.pvc-hero {
    background: linear-gradient(135deg, #f8f5f4 0%, #ffffff 100%);
    padding: 60px 0;
    margin-bottom: 40px;
}
.pvc-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}
.pvc-hero h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #31221c;
    margin-bottom: 1rem;
}
.pvc-hero p {
    font-size: 1rem;
    line-height: 1.6;
    color: #52413a;
    margin-bottom: 1.5rem;
}
.pvc-hero img {
    border-radius: 8px;
}
.pvc-cta-button {
    display: inline-block;
    background: #f85d23;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 93, 35, 0.3);
}
.pvc-cta-button:hover {
    background: #e04d1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 93, 35, 0.4);
    color: white;
}
.profiles-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .profiles-list {
        grid-template-columns: 1fr;
    }
}
.profile-item-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}
.profile-item-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}
.profile-item-image {
    flex-shrink: 0;
    width: 301px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 1rem;
}
.profile-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.profile-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.profile-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #31221c;
    margin: 0;
}
.profile-item-description {
    color: #52413a;
    line-height: 1.6;
    margin: 0;
}
.profile-item-price {
    margin-top: 0.5rem;
}
.price-new {
    font-size: 1.3rem;
    font-weight: 700;
    color: #31221c;
}
.profile-item-btn {
    display: inline-block;
    background: #f85d23;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 0.5rem;
}
.profile-item-btn:hover {
    background: #e04d1a;
    color: white;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .profile-item-content {
        flex-direction: column;
        gap: 1rem;
    }
    .profile-item-image {
        width: 100%;
        height: 200px;
    }
}
.profile-guide-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f5f4 100%);
    padding: 60px 0;
    margin: 60px 0;
}
.profile-guide-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.profile-guide-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}
.profile-guide-logo img {
    max-width: 200px;
    height: auto;
    opacity: 0.9;
}
.profile-guide-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #31221c;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}
.profile-guide-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f85d23 0%, #e04d1a 100%);
    border-radius: 2px;
}
.profile-guide-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #52413a;
    text-align: justify;
    margin: 0;
}
@media (max-width: 768px) {
    .profile-guide-content {
        padding: 2rem 1.5rem;
    }
    .profile-guide-title {
        font-size: 1.5rem;
    }
    .profile-guide-text {
        font-size: 1rem;
        text-align: left;
    }
}
.advantages-section {
    background: #f8f5f4;
    padding: 60px 0;
    margin: 60px 0;
}
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
@media (max-width: 992px) {
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .advantage-grid {
        grid-template-columns: 1fr;
    }
}
.advantage-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}
.advantage-icon {
    width: 80px;
    height: 80px;
    background: #f85d23;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}
.advantage-icon i {
    font-size: 2.5rem;
    color: #ffffff !important;
    display: block !important;
    line-height: 1;
    position: relative;
    z-index: 1;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
}
.advantage-icon i::before {
    color: #ffffff !important;
    display: inline-block !important;
    font-family: bootstrap-icons !important;
    font-size: 2.5rem !important;
    line-height: 1 !important;
    vertical-align: 0 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.advantage-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #31221c;
    margin-bottom: 1rem;
}
.faq-section {
    margin: 60px 0;
}
.faq-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #31221c;
    margin-bottom: 0.5rem;
}
.faq-answer {
    color: #52413a;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .pvc-hero h1 {
        font-size: 2rem;
    }
    .pvc-hero p {
        font-size: 1rem;
    }
    .profile-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

