:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --register-login-button-bg: #C30808;
    --register-login-button-text: #FFFF00;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --border-color: #e0e0e0;
    --background-light: #f9f9f9;
}

.page-resources-dwin-app-download-guide {
    font-family: 'Arial', sans-serif;
    color: var(--text-color-dark);
    line-height: 1.6;
    background-color: var(--secondary-color);
}

/* Fixed Header Offset */
.page-resources-dwin-app-download-guide__hero-section {
    padding-top: var(--header-offset, 120px);
}

/* General Container and Section Styles */
.page-resources-dwin-app-download-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-dwin-app-download-guide__section {
    padding: 60px 0;
    text-align: center;
}

.page-resources-dwin-app-download-guide__section:nth-of-type(even) {
    background-color: var(--background-light);
}

.page-resources-dwin-app-download-guide__section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: bold;
    text-align: center;
}

.page-resources-dwin-app-download-guide__text-block {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

/* Hero Section */
.page-resources-dwin-app-download-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #018C4D 100%);
    color: var(--text-color-light);
}

.page-resources-dwin-app-download-guide__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-dwin-app-download-guide__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-resources-dwin-app-download-guide__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-dwin-app-download-guide__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-resources-dwin-app-download-guide__main-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 900;
    color: var(--text-color-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-resources-dwin-app-download-guide__intro-description {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color-light);
}

.page-resources-dwin-app-download-guide__cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-resources-dwin-app-download-guide__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    text-align: center;
}

.page-resources-dwin-app-download-guide__cta-button--primary {
    background: var(--register-login-button-bg);
    color: var(--register-login-button-text);
    border: 2px solid var(--register-login-button-bg);
}

.page-resources-dwin-app-download-guide__cta-button--primary:hover {
    background: #A30606;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-dwin-app-download-guide__cta-button--secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}