.mh-fdaa1545-wrapper {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Rubik', sans-serif;
}

.mh-fdaa1545-headline {
    margin-bottom: 20px;
    font-size: 3.5rem;
    line-height: 1.2;
    font-family: 'Rubik', sans-serif;
}

.mh-fdaa1545-subheadline {
    margin-bottom: 40px;
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Rubik', sans-serif;
}

.mh-fdaa1545-wrapper[style*="text-align: left"] .mh-fdaa1545-subheadline { margin-left: 0; }
.mh-fdaa1545-wrapper[style*="text-align: right"] .mh-fdaa1545-subheadline { margin-right: 0; }

.mh-fdaa1545-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.mh-fdaa1545-wrapper[style*="text-align: left"] .mh-fdaa1545-buttons { justify-content: flex-start; }
.mh-fdaa1545-wrapper[style*="text-align: right"] .mh-fdaa1545-buttons { justify-content: flex-end; }

.mh-fdaa1545-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    flex: 1 1 0;
    min-width: 150px;
    max-width: 200px;
    text-align: center;
}

.mh-fdaa1545-btn-primary {
    background-color: #021F4B;
    border-color: #021F4B;
    color: #FFFFFF;
}
.mh-fdaa1545-btn-primary:hover {
    background-color: #01122b;
    border-color: #01122b;
    color: #FFFFFF;
}

.mh-fdaa1545-btn-secondary {
    background-color: #FF5E10;
    border-color: #FF5E10;
    color: #FFFFFF;
}
.mh-fdaa1545-btn-secondary:hover {
    background-color: #e5540e;
    border-color: #e5540e;
    color: #FFFFFF;
}

.mh-fdaa1545-btn-outline {
    background-color: transparent;
    border-color: #021F4B;
    color: #021F4B;
}
.mh-fdaa1545-btn-outline:hover {
    background-color: #021F4B;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .mh-fdaa1545-buttons {
        flex-direction: column;
        align-items: center;
    }
    .mh-fdaa1545-btn {
        max-width: 100%;
        width: 100%;
    }
}