:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg: #FFFFFF;
    --site-bg: #F4F7FB; /* Assuming this is the body background */
    --text-main: #1F2D3D;
    --text-black: #000000;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
    --header-offset: 120px; /* Default for non-shared handling, adjust if shared provides */
}

.page-da-ga {
    font-family: 'Arial', sans-serif;
    color: var(--text-main); /* Default text color for the page */
    background-color: var(--site-bg); /* Page specific background */
}

/* Ensure content is not hidden by fixed header, if shared doesn't handle body padding */
/* This is a fallback. If shared.css has body { padding-top: var(--header-offset); }, this should be removed or adjusted. */
/* For this exercise, I'll assume shared.css handles body padding-top, and the first section gets a small top padding. */
.page-da-ga__hero-section {
    padding-top: 10px; /* Small top padding as shared.css should handle body padding-top */
    padding-bottom: 40px;
    background: var(--site-bg); /* Ensure consistent background */
}

.page-da-ga__hero-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 16px;
    gap: 24px;
}

.page-da-ga__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    padding-right: 20px;
}

.page-da-ga__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-black);
    margin-bottom: 16px;
}

.page-da-ga__description-text {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--text-main);
}

.page-da-ga__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}