:root {
    --gradient-primary: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d, #1a2a6c);
    --accent-primary: #b21f1f;
    --text-accent: #fdbb2d;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #1a1a2e;
    --bg-light: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif', serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Italiana', serif;
    font-weight: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

.awe_header-container {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.awe_header-wrapper {
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.awe_header-logo {
    font-size: 1.5rem;
    font-weight: bold;
    transition: var(--transition);
}

.awe_header-logo:hover {
    color: var(--text-accent);
}

.awe_header-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.awe_header-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.awe_header-link:hover {
    color: var(--text-accent);
}

.awe_premium-section {
    min-height: 100vh;
    background: url('../awe-img/caffe-img-2.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
}

.awe_premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.awe_premium-content {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

.awe_premium-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
}

.awe_premium-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.awe_premium-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

.awe_premium-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 8px;
    min-width: 200px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.awe_premium-card:hover {
    transform: translateY(-10px);
    background: rgba(178, 31, 31, 0.3);
}

.awe_premium-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-accent);
}

.awe_about-section {
    height: auto;
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.awe_about-container {
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.awe_about-imagebox {
    flex: 1;
    height: auto;
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
    top: -50px;
}

.awe_about-content {
    flex: 1;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.881);
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    bottom: -330px;
}

.awe_about-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.awe_about-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.awe_welcome-section {
    min-height: 70vh;
    background: url('../awe-img/caffe-img-3.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
}

.awe_welcome-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.8;
}

.awe_welcome-content {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

.awe_welcome-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.awe_welcome-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.awe_welcome-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.awe_welcome-icons i {
    font-size: 2.5rem;
    transition: var(--transition);
}

.awe_welcome-icons i:hover {
    color: var(--text-accent);
    transform: scale(1.2);
}

.awe_benefits-section {
    padding: 6rem 2rem;
    background: white;
}

.awe_benefits-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--accent-primary);
}

.awe_benefits-container {
    max-width: 1480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.awe_benefits-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.awe_benefits-card:hover {
    transform: translateY(-10px);
    background: var(--gradient-primary);
    color: var(--text-light);
}

.awe_benefits-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.awe_benefits-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.awe_benefits-card:hover i {
    color: var(--text-accent);
}

.awe_excellence-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.awe_excellence-container {
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.awe_excellence-content {
    flex: 1;
}

.awe_excellence-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.awe_excellence-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.awe_excellence-image {
    flex: 1;
    min-height: 500px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.awe_excellence-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.awe_faq-section {
    min-height: 100vh;
    background: url('../awe-img/caffe-img-4.png') center/cover no-repeat;
    position: relative;
    padding: 6rem 2rem;
}

.awe_faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 42, 108, 0.9);
}

.awe_faq-content {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    color: var(--text-light);
}

.awe_faq-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.awe_faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.awe_faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.awe_faq-question {
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.awe_faq-question h3 {
    font-size: 1.3rem;
    font-weight: normal;
}

.awe_faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.awe_faq-answer p {
    padding-bottom: 1.5rem;
}

.awe_faq-item.active .awe_faq-answer {
    max-height: 300px;
}

.awe_faq-item.active .awe_faq-question i {
    transform: rotate(180deg);
}

.awe_newsletter-section {
    padding: 5rem 2rem;
    background: var(--gradient-primary);
    color: var(--text-light);
}

.awe_newsletter-container {
    max-width: 1480px;
    margin: 0 auto;
    text-align: center;
}

.awe_newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.awe_newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.awe_newsletter-inputgroup {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.awe_newsletter-input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Noto Serif', serif;
}

.awe_newsletter-error {
    position: absolute;
    bottom: -20px;
    left: 0;
    color: var(--text-accent);
    font-size: 0.8rem;
    display: none;
}

.awe_newsletter-button {
    background: var(--text-accent);
    color: var(--text-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Italiana', serif;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.awe_newsletter-button:hover {
    background: var(--text-light);
    transform: translateY(-3px);
}

.awe_newsletter-success {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.awe_newsletter-success.show {
    opacity: 1;
    visibility: visible;
}

.awe_newsletter-successcontent {
    position: relative;
    text-align: center;
    color: var(--text-dark);
}

.awe_newsletter-successcontent i:first-of-type {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 1.5rem;
    cursor: pointer;
    background: var(--bg-light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.awe_newsletter-successcontent i:last-of-type {
    font-size: 4rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.awe_newsletter-successcontent h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.awe_reviews-section {
    padding: 6rem 2rem;
    background: white;
}

.awe_reviews-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--accent-primary);
}

.awe_reviews-container {
    max-width: 1480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.awe_reviews-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.awe_reviews-card:hover {
    transform: translateY(-10px);
    background: var(--gradient-primary);
    color: var(--text-light);
}

.awe_reviews-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--accent-primary);
}

.awe_reviews-card i {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.awe_reviews-card:hover i {
    color: var(--text-accent);
}

.awe_reviews-card h3 {
    margin-top: 1rem;
    font-size: 1.3rem;
}

.awe_footer-container {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 2rem;
}

.awe_footer-links {
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
}

.awe_footer-links a {
    transition: var(--transition);
}

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

.awe_footer-copyright {
    max-width: 1480px;
    margin: 2rem auto 0;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.awe_cookies-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateX(-150%);
    transition: transform 0.5s ease;
}

.awe_cookies-notice.show {
    transform: translateX(0);
}

.awe_cookies-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.awe_cookies-content p {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.awe_cookies-content a {
    color: var(--accent-primary);
}

.awe_cookies-accept {
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.awe_cookies-accept:hover {
    background: var(--text-accent);
    color: var(--text-dark);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .awe_benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .awe_reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .awe_about-container {
        flex-direction: column;
        align-items: center;
    }
    
    .awe_about-imagebox, .awe_about-content {
        min-height: auto;
        width: 100%;
        top: 0;
        bottom: 0;
    }

    .awe_about-imagebox img {
        height: auto;
        width: 100%;
        max-width: 800px;
    }
    
    .awe_excellence-container {
        flex-direction: column;
    }
    
    .awe_excellence-image {
        min-height: 300px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .awe_header-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .awe_header-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .awe_premium-title {
        font-size: 2.5rem;
    }
    
    .awe_premium-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .awe_premium-card {
        width: 100%;
    }
    
    .awe_welcome-title {
        font-size: 2.2rem;
    }
    
    .awe_faq-title, .awe_reviews-title, .awe_benefits-title {
        font-size: 2.2rem;
    }

    .awe_newsletter-title {
        font-size: 2rem;
    }
    
    .awe_newsletter-form {
        flex-direction: column;
    }
    
    .awe_newsletter-inputgroup {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .awe_premium-section {
        padding-top: 17rem;
    }
    .awe_benefits-container, .awe_reviews-container {
        grid-template-columns: 1fr;
    }
    
    .awe_premium-title {
        font-size: 2rem;
    }
    
    .awe_about-title, .awe_excellence-title {
        font-size: 1.8rem;
    }

    .awe_newsletter-success {
        width: 90%;
    }
    
    .awe_footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .awe_cookies-notice {
        max-width: calc(100% - 40px);
    }
}

@media (max-width: 320px) {
    .awe_premium-title {
        font-size: 1.8rem;
    }
    
    .awe_header-list {
        gap: 1rem;
    }
    
    .awe_premium-text, .awe_welcome-text {
        font-size: 1rem;
    }
}

:root {
    --gradient-primary: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d, #1a2a6c);
    --accent-primary: #b21f1f;
    --text-accent: #fdbb2d;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #1a1a2e;
    --bg-light: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

.awepages_contact-hero {
    min-height: 300px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.awepages_contact-container {
    max-width: 1480px;
    margin: 0 auto;
}

.awepages_contact-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.awepages_contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.awepages_feedback-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.awepages_feedback-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.awepages_feedback-contacts {
    margin-bottom: 2.5rem;
    background: #fff7f7;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #ffe0e0;
    box-shadow: var(--shadow);
}

.awepages_contacts-heading {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-family: 'Italiana', serif;
    color: var(--accent-primary);
}

.awepages_contacts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Noto Serif', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.awepages_contacts-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.awepages_contacts-list i {
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.awepages_feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.awepages_feedback-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.awepages_feedback-group label {
    font-family: 'Italiana', serif;
    font-size: 1.1rem;
    color: var(--accent-primary);
}

.awepages_feedback-input, .awepages_feedback-textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Noto Serif', serif;
    font-size: 1rem;
    transition: var(--transition);
}

.awepages_feedback-input:focus, .awepages_feedback-textarea:focus {
    border-color: var(--accent-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(178, 31, 31, 0.2);
}

.awepages_feedback-textarea {
    min-height: 150px;
    resize: vertical;
}

.awepages_feedback-error {
    color: var(--accent-primary);
    font-size: 0.8rem;
    min-height: 1rem;
    display: none;
}

.awepages_feedback-checkgroup {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.awepages_feedback-checkgroup input {
    width: 18px;
    height: 18px;
}

.awepages_feedback-checkgroup label {
    font-size: 0.9rem;
}

.awepages_feedback-checkgroup a {
    color: var(--accent-primary);
    text-decoration: underline;
}

.awepages_feedback-button {
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-family: 'Italiana', serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.awepages_feedback-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.awepages_feedback-button:not(:disabled):hover {
    background: var(--text-accent);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.awepages_feedback-success {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-width: 500px;
    width: 90%;
}

.awepages_feedback-success.show {
    opacity: 1;
    visibility: visible;
}

.awepages_feedback-successcontent {
    position: relative;
    text-align: center;
    color: var(--text-dark);
}

.awepages_feedback-close {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 1.5rem;
    cursor: pointer;
    background: var(--bg-light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.awepages_feedback-close:hover {
    color: var(--accent-primary);
}

.awepages_feedback-successicon {
    font-size: 4rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.awepages_feedback-successcontent h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Italiana', serif;
}

.awepages_feedback-successcontent p {
    font-size: 1.1rem;
    opacity: 0.8;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .awepages_contact-title {
        font-size: 2.2rem;
    }
    
    .awepages_feedback-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .awepages_contact-hero {
        min-height: 250px;
        padding: 7rem 1.5rem;
    }
    
    .awepages_contact-title {
        font-size: 1.8rem;
    }
    
    .awepages_feedback-wrapper {
        padding: 1.5rem;
    }
    
    .awepages_feedback-successcontent h3 {
        font-size: 1.5rem;
    }

    .awe_footer-links {
        align-items: center;
    }
}

:root {
    --gradient-primary: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d, #1a2a6c);
    --accent-primary: #b21f1f;
    --text-accent: #fdbb2d;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #1a1a2e;
    --bg-light: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

.awepages_cookie-hero {
    min-height: 300px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.awepages_cookie-container {
    max-width: 1480px;
    margin: 0 auto;
}

.awepages_cookie-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.awepages_cookie-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.awepages_cookie-content {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.awepages_cookie-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.awepages_cookie-item {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

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

.awepages_cookie-item i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.awepages_cookie-item h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.awepages_cookie-item p {
    font-size: 1.1rem;
    line-height: 1.7;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .awepages_cookie-title {
        font-size: 2.2rem;
    }
    
    .awepages_cookie-item {
        padding: 2rem;
    }
    
    .awepages_cookie-item h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .awepages_cookie-hero {
        min-height: 250px;
        padding: 7rem 1.5rem;
    }
    
    .awepages_cookie-title {
        font-size: 1.8rem;
    }
    
    .awepages_cookie-item {
        padding: 1.5rem;
    }
    
    .awepages_cookie-item i {
        font-size: 2rem;
    }
}

:root {
    --gradient-primary: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d, #1a2a6c);
    --accent-primary: #b21f1f;
    --text-accent: #fdbb2d;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #1a1a2e;
    --bg-light: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

.awepages_privacy-hero {
    min-height: 300px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.awepages_privacy-container {
    max-width: 1480px;
    margin: 0 auto;
}

.awepages_privacy-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.awepages_privacy-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.awepages_privacy-content {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.awepages_privacy-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.awepages_privacy-item {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

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

.awepages_privacy-item i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.awepages_privacy-item h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.awepages_privacy-item p {
    font-size: 1.1rem;
    line-height: 1.7;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .awepages_privacy-title {
        font-size: 2.2rem;
    }
    
    .awepages_privacy-item {
        padding: 2rem;
    }
    
    .awepages_privacy-item h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .awepages_privacy-hero {
        min-height: 250px;
        padding: 7rem 1.5rem;
    }
    
    .awepages_privacy-title {
        font-size: 1.8rem;
    }
    
    .awepages_privacy-item {
        padding: 1.5rem;
    }
    
    .awepages_privacy-item i {
        font-size: 2rem;
    }
}