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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.ab-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.ab-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.ab-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.ab-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ab-logo {
    width: 50px;
    height: 50px;
    background-image: url('img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
}

.ab-company-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ab-company-main {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.ab-company-sub {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b35;
    line-height: 1;
    letter-spacing: 0.02em;
}

.ab-nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.ab-nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 20px;
    border-radius: 25px;
}

.ab-nav-menu a:hover,
.ab-nav-active {
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.ab-nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.ab-nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.ab-main {
    margin-top: 100px;
}

.ab-hero {
    padding: 140px 0 120px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.ab-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -50%;
    width: 100%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
    transform: rotate(-20deg);
    z-index: 1;
}

.ab-hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -40%;
    width: 80%;
    height: 90%;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.05) 0%, transparent 60%);
    transform: rotate(30deg);
    z-index: 1;
}

.ab-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ab-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.ab-hero-title .highlight {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.ab-hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 50px;
    color: #666666;
    font-weight: 400;
    max-width: 90%;
}

.ab-hero-buttons {
    display: flex;
    gap: 20px;
}

.ab-btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.ab-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.ab-btn-secondary {
    background: transparent;
    color: #1a1a1a;
    padding: 18px 35px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ab-btn-secondary:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ab-hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ab-hero-visual img:hover {
    transform: scale(1.02);
}

.ab-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.ab-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.ab-section-description {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.ab-highlights {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.ab-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.ab-highlight-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.ab-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(247, 147, 30, 0.03) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ab-highlight-featured {
    border: 2px solid #ff6b35;
    transform: scale(1.05);
}

.ab-highlight-featured::before {
    opacity: 1;
}

.ab-highlight-card:hover::before {
    opacity: 1;
}

.ab-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.ab-highlight-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.ab-highlight-icon {
    margin-bottom: 20px;
}

.ab-highlight-icon img {
    width: 64px;
    height: 64px;
    transition: transform 0.3s ease;
}

.ab-highlight-card:hover .ab-highlight-icon img {
    transform: scale(1.1);
}

.ab-highlight-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.ab-highlight-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 15px;
    line-height: 1;
}

.ab-highlight-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

.ab-financial-reports {
    padding: 120px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    position: relative;
    z-index: 10;
}

.ab-reports-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.ab-reports-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ab-reports-visual img:hover {
    transform: scale(1.02);
}

.ab-report-category {
    margin-bottom: 50px;
}

.ab-category-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
    position: relative;
    padding-left: 20px;
}

.ab-category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 2px;
}

.ab-report-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ab-report-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.ab-report-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #ff6b35;
}

.ab-report-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 15px;
    color: white;
    flex-shrink: 0;
}

.ab-report-info {
    flex: 1;
}

.ab-report-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.ab-report-info p {
    color: #666666;
    line-height: 1.5;
    margin-bottom: 8px;
}

.ab-report-date {
    font-size: 0.9rem;
    color: #ff6b35;
    font-weight: 600;
}



.ab-governance {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.ab-governance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.ab-governance-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    position: relative;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.ab-governance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(247, 147, 30, 0.03) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ab-governance-card:hover::before {
    opacity: 1;
}

.ab-governance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.ab-governance-icon {
    margin-bottom: 25px;
}

.ab-governance-icon img {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.ab-governance-card:hover .ab-governance-icon img {
    transform: scale(1.1);
}

.ab-governance-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.ab-governance-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.ab-governance-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ab-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    border-radius: 10px;
    border: 1px solid #f0f0f0;
}

.ab-detail-label {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
}

.ab-detail-value {
    font-size: 0.9rem;
    color: #ff6b35;
    font-weight: 700;
}

.ab-announcements {
    padding: 120px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    position: relative;
    z-index: 10;
}

.ab-announcements-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.ab-announcements-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ab-announcement-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.ab-announcement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(247, 147, 30, 0.03) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ab-announcement-featured {
    border: 2px solid #ff6b35;
    transform: scale(1.02);
}

.ab-announcement-featured::before {
    opacity: 1;
}

.ab-announcement-item:hover::before {
    opacity: 1;
}

.ab-announcement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.ab-announcement-featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.ab-announcement-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    margin-bottom: 15px;
}

.ab-announcement-date {
    font-size: 0.9rem;
    color: #999999;
    font-weight: 600;
    margin-bottom: 15px;
}

.ab-announcement-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.3;
}

.ab-announcement-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.ab-announcement-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.ab-announcement-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.ab-announcement-link:hover {
    color: #f7931e;
}

.ab-announcement-link::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.ab-announcement-link:hover::after {
    transform: translateX(3px);
}



.ab-announcements-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ab-sidebar-widget {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.ab-sidebar-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.ab-widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    position: relative;
    padding-left: 15px;
}

.ab-widget-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 2px;
}

.ab-calendar-events {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ab-calendar-event {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.ab-calendar-event:hover {
    transform: translateX(5px);
    border-color: #ff6b35;
}

.ab-event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
}

.ab-event-day {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

.ab-event-month {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.ab-event-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.ab-event-info p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.4;
}

.ab-stock-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ab-stock-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.ab-stock-item:hover {
    border-color: #ff6b35;
}

.ab-stock-label {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
}

.ab-stock-value {
    font-size: 0.9rem;
    color: #ff6b35;
    font-weight: 700;
}

.ab-investor-contact {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.ab-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.ab-contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ab-contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.ab-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.ab-contact-person {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ab-contact-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ab-contact-details {
    flex: 1;
}

.ab-contact-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.ab-contact-title {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 15px;
}

.ab-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ab-contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ab-method-icon {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.ab-contact-method a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ab-contact-method a:hover {
    color: #f7931e;
}

.ab-contact-form {
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #f0f0f0;
}

.ab-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.ab-form-group {
    margin-bottom: 25px;
}

.ab-form-group label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.ab-form-group input,
.ab-form-group select,
.ab-form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.3s ease;
}

.ab-form-group input:focus,
.ab-form-group select:focus,
.ab-form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.ab-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.ab-form-submit {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.ab-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.ab-footer {
    background: #f8f9fa;
    padding: 60px 0 30px;
    border-top: 1px solid #e9ecef;
}

.ab-footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.ab-footer-section {
    display: flex;
    flex-direction: column;
}

.ab-footer-description {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.ab-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ab-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ab-contact-item span {
    font-weight: 600;
    color: #2c3e50;
    min-width: 70px;
}

.ab-contact-item a {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ab-contact-item a:hover {
    color: #ff6b35;
}

.ab-footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.ab-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ab-footer-links a {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ab-footer-links a:hover {
    color: #ff6b35;
}

.ab-footer-address {
    font-style: normal;
    color: #7f8c8d;
    line-height: 1.6;
}

.ab-footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 30px;
    text-align: center;
}

.ab-footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Privacy Notice */
.ab-privacy-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
}

.ab-privacy-notice.show {
    transform: translateY(0);
}

.ab-privacy-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.ab-privacy-text {
    font-size: 0.95rem;
    color: #2c3e50;
    line-height: 1.5;
    flex: 1;
}

.ab-privacy-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ab-privacy-link:hover {
    color: #f7931e;
}

.ab-privacy-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.ab-btn-accept {
    padding: 10px 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ab-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.ab-btn-settings {
    padding: 10px 25px;
    background: transparent;
    color: #2c3e50;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ab-btn-settings:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .ab-container {
        padding: 0 20px;
    }

    .ab-nav {
        padding: 20px;
    }

    .ab-nav-menu {
        display: none;
    }

    .ab-nav-toggle {
        display: flex;
    }

    .ab-main {
        margin-top: 80px;
    }

    .ab-hero {
        padding: 80px 0 60px;
    }

    .ab-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .ab-hero-title {
        font-size: 2.5rem;
    }

    .ab-hero-subtitle {
        font-size: 1.1rem;
    }

    .ab-hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .ab-section-title {
        font-size: 2rem;
    }

    .ab-highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ab-highlight-featured {
        transform: none;
    }

    .ab-reports-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ab-governance-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ab-announcements-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ab-announcement-featured {
        transform: none;
    }

    .ab-contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ab-contact-person {
        flex-direction: column;
        text-align: center;
    }

    .ab-contact-form {
        padding: 30px 20px;
    }

    .ab-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ab-hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .ab-btn-primary,
    .ab-btn-secondary {
        justify-content: center;
    }
} 