
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    color: #4a2f64; 
}


.language-switch {
    position: fixed;
    top: 12px;
    right: 20px;
    z-index: 1000;
}

.language-switch button {
    padding: 8px 15px;
    margin: 0 5px;
    border: none;
    border-radius: 5px;
    background-color: #5f3b8f;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.language-switch button:hover {
    background-color: #8a57cf;
}


.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(74, 47, 100, 0.2);
    z-index: 100;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 15px 0;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    text-decoration: none;
    color: #4a2f64;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 11px;
    border-radius: 4px;
}

.main-nav a:hover,
.main-nav a.active {
    color: #692fb7;
    font-weight: 700;
    background-color: rgba(95, 59, 143, 0.2);
}

.hero-section {
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7d5fb3, #5f3b8f);
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(74, 47, 100, 0.2);
}

.hero-content {
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, 
        #ffffff 0%,
        #e6d9ff 25%,
        #ffffff 50%,
        #b299ff 75%,
        #ffffff 100%
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite, fadeInUp 1s ease-out;
}

.hero-content h2 {
    font-size: 1.8em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    position: relative;
    margin-top: 28px;
    color: #e1cfea;
}

.hero-content h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    animation: lineGrow 1.5s ease-out 1.5s forwards;
}

@keyframes shine {
    to {
        background-position: 300% center;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineGrow {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.section {
    min-height: 300px;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: -30px;
    box-shadow: 0 11px 20px rgba(74, 47, 100, 0.15);
    z-index: 1;
    width: 100%;
}

.section-content {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
}

.section h2 {
    margin-bottom: 30px;
    font-size: 1.8em;
    color: #4a2f64;
    position: relative;
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    justify-content: center;
}

.section h2:hover {
    transform: translateY(-2px);
    text-shadow: 3px 3px 6px rgba(74, 47, 100, 0.2);
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100%);
    height: 3px;
    background: linear-gradient(90deg, 
        transparent,
        #8a57cf,
        transparent
    );
    opacity: 0.5;
    transition: all 0.3s ease;
}

.section h2:hover::after {
    opacity: 1;
    height: 4px;
}

.energy-section h2::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url('../Image/energy.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(2px 2px 4px rgba(74, 47, 100, 0.2));
    transition: all 0.3s ease;
}

.transactions-section h2::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url('../Image/TransactionCount.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(2px 2px 4px rgba(74, 47, 100, 0.2));
    transition: all 0.3s ease;
}

.exchange-section h2::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url('../Image/Exchange.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(2px 2px 4px rgba(74, 47, 100, 0.2));
    transition: all 0.3s ease;
}

.agent-section h2::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url('../Image/agent.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(2px 2px 4px rgba(74, 47, 100, 0.2));
    transition: all 0.3s ease;
}

.api-section h2::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url('../Image/Api.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(2px 2px 4px rgba(74, 47, 100, 0.2));
    transition: all 0.3s ease;
}

.about-section h2::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url('../Image/About.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(2px 2px 4px rgba(74, 47, 100, 0.2));
    transition: all 0.3s ease;
}

.section h2:hover::before {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(3px 3px 6px rgba(74, 47, 100, 0.3));
}

.home-section {
    background: linear-gradient(to bottom, #f0e6ff, #e6d9ff);
    margin-top: -50px;
    padding-top: 130px;
    z-index: 7;
}

.energy-section {
    background: linear-gradient(to bottom, #e6d9ff, #d9c9ff);
    z-index: 6;
}

.transactions-section {
    background: linear-gradient(to bottom, #ccb9ff, #bfa9ff);
    z-index: 4;
}

.exchange-section {
    
    background: linear-gradient(to bottom, #d9c9ff, #ccb9ff);
    z-index: 5;
}

.agent-section {
    background: linear-gradient(to bottom, #bfa9ff, #b299ff);
    z-index: 3;
}

.api-section {
    background: linear-gradient(to bottom, #b299ff, #a589ff);
    z-index: 2;
}

.about-section {
    background: linear-gradient(to bottom, #a589ff, #9879ff);
    z-index: 1;
}

.energy-section .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
}

.energy-info {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(74, 47, 100, 0.1);
    font-size: 1.1em;
    color: #4a2f64;
}

.energy-info h3 {
    color: #4a2f64;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.energy-info ul {
    list-style: none;
    padding: 0;
}

.energy-info li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #5f3b8f;
}

.energy-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8a57cf;
    font-size: 1.5em;
    line-height: 1;
}

.energy-service-info {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(74, 47, 100, 0.1);
}

.transactions-service-info {
    margin-top: 0px!important;
    padding-top: 22px!important;
}

.service-item {
    flex: 1;
    background: #f0e6ff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(74, 47, 100, 0.15);
    background: #f0e6ff;
}

.service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-item h4 {
    color: #4a2f64;
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-item p {
    color: #5f3b8f;
    font-size: 1em;
    margin: 0;
}

.energy-calculator {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(74, 47, 100, 0.1);
}

.energy-calculator h3 {
    color: #4a2f64;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.transaction-selector label {
    display: block;
    margin-bottom: 10px;
    color: #5f3b8f;
}

.transaction-selector input[type="range"] {
    width: 100%;
    height: 16px;
    background: #e6d9ff;
    border-radius: 8px;
    outline: none;
    -webkit-appearance: none;
    margin: 20px 0;
}

.transaction-selector input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 40px;
    height: 40px;
    background: #8a57cf;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(74, 47, 100, 0.2);
}

.transaction-count {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #5f3b8f;
    font-size: 1.2em;
    margin-top: 10px;
    padding: 0 10px;
}

.transaction-count span {
    color: #5f3b8f;
    font-size: 1.2em;
}

.energy-info .energy-value {
    color: #5f3b8f;
    font-size: 1.2em;
}

.validity-period {
    color: #8a57cf;
    font-size: 0.9em;
    margin-top: 5px;
}

.price-display {
    background: #f0e6ff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
}

.price-display .price {
    font-size: 2em;
    font-weight: bold;
    color: #4a2f64;
}

.wallet-address {
    background: #f0e6ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    word-break: break-all;
    cursor: pointer;
    transition: all 0.3s;
}

.wallet-address:hover {
    background: #e6d9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 47, 100, 0.15);
}

#walletAddress {
    color: #4a2f64;
    font-family: monospace;
    font-size: 1.4em;
    font-weight: bold;
    margin: 10px 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.address-note {
    color: #8a57cf;
    font-size: 0.9em;
    margin-top: 5px;
}

.copy-message,
.error-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(95, 59, 143, 0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(74, 47, 100, 0.2);
    backdrop-filter: blur(4px);
}

.copy-message.show,
.error-message.show {
    opacity: 1;
}

.query-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.query-modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
}

.query-option {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.query-option:hover {
    background: #0056b3;
}

.price-detail {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}


.menu-toggle span {
    background-color: #4a2f64;
}


@media (max-width: 768px) {
    .main-nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.98);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px 0;
        box-shadow: 0 2px 5px rgba(74, 47, 100, 0.2);
    }

    .main-nav.active ul {
        display: flex;
    }

    .main-nav li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        left: 20px;
        top: 10px;
        cursor: pointer;
        z-index: 1000;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #4a2f64;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content h1 {
        font-size: 1.8em;
    }

    .hero-content h2 {
        font-size: 1.4em;
    }

    .section {
        padding: 30px 15px;
    }

    .section h2 {
        font-size: 1.5em;
        padding: 10px 0;
    }
    
    .section h2::before {
        width: 30px;
        height: 30px;
    }

    .language-switch {
        position: fixed;
        top: 10px;
        right: 20px;
        z-index: 1000;
    }

    .section-content {
        max-width: 100%;
    }

    .energy-section .content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .energy-service-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-item {
        width: 100%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html {
    scroll-behavior: smooth;
}

.transactions-section .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
}

.transactions-info {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(74, 47, 100, 0.1);
}

.transactions-info h3 {
    color: #4a2f64;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.transactions-info ul {
    list-style: none;
    padding: 0;
}

.transactions-info li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #5f3b8f;
}

.transactions-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8a57cf;
    font-size: 1.5em;
    line-height: 1;
}

.transactions-calculator {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(74, 47, 100, 0.1);
}

.transactions-calculator h3 {
    color: #4a2f64;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.transaction-input {
    margin-bottom: 30px;
}

.transaction-input label {
    display: block;
    margin-bottom: 10px;
    color: #5f3b8f;
}

.transaction-input input {
    width: 100%;
    padding: 10px;
    border: 2px solid #e6d9ff;
    border-radius: 5px;
    font-size: 1.1em;
    color: #4a2f64;
    margin-right: 10px;
    box-sizing: border-box;
}

.transaction-input input:focus {
    outline: none;
    border-color: #8a57cf;
}

.transaction-input span {
    color: #5f3b8f;
    font-size: 1.1em;
}

.price-display {
    background: #f0e6ff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.price-display .price {
    font-size: 2em;
    font-weight: bold;
    color: #4a2f64;
    margin: 10px 0;
}

.currency-switch {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 15px;
    background: #8a57cf;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-switch:hover {
    background: #7d4fb3;
    transform: translateY(-50%) scale(1.05);
}

.query-button {
    display: block;
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background: #8a57cf;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.query-button:hover {
    background: #7d4fb3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 47, 100, 0.2);
}


@media (max-width: 768px) {
    .transactions-section .content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .transaction-input input {
        width: 120px;
    }

    .price-display .price {
        font-size: 1.6em;
    }

    .currency-switch {
        position: static;
        transform: none;
        margin-top: 10px;
    }
    

    .agent-benefits {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
        align-items: center!important;
    }
    
    .benefit-icon {
        margin-bottom: 15px;
        margin-right: 0;
        font-size: 2.5em;
    }
}

.transaction-note {
    font-size: 13px!important;
    color: #666!important;
    font-style: italic;
}

.input-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.input-header label {
    margin: 0;
    white-space: nowrap;
}


.exchange-section .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
}

.exchange-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(74, 47, 100, 0.1);
}

.exchange-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.exchange-rate {
    font-size: 1.2em;
    color: #5f3b8f;
    font-weight: 500;
    text-align: center;
    padding: 10px;
    background: rgba(95, 59, 143, 0.1);
    border-radius: 6px;
}

.exchange-row {
    display: flex;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}

.exchange-input,
.exchange-result,
.exchange-address {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.input-container,
.trx-amount,
.address-container {
    background: #f0e6ff;
    padding: 15px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.exchange-input label,
.exchange-result label,
.exchange-address label {
    color: #5f3b8f;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.exchange-input input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e6d9ff;
    border-radius: 6px;
    font-size: 1.1em;
    color: #4a2f64;
    transition: border-color 0.3s;
    background: rgba(255, 255, 255, 0.5);
}

.exchange-input input:focus {
    outline: none;
    border-color: #8a57cf;
}

.amount {
    font-size: 2em;
    font-weight: bold;
    color: #4a2f64;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exchange-address {
    cursor: pointer;
    transition: all 0.3s;
}

.exchange-address:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 47, 100, 0.15);
}

.exchange-address:hover .address-container {
    background: #e6d9ff;
}

#exchangeWalletAddress {
    color: #4a2f64;
    font-family: monospace;
    font-size: 1.4em;
    font-weight: bold;
    word-break: break-all;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    margin: 10px 0;
    flex: 1;
    text-align: center;
}

#exchangeCopyMessage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(95, 59, 143, 0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(74, 47, 100, 0.2);
    backdrop-filter: blur(4px);
}

#exchangeCopyMessage.show {
    opacity: 1;
}

@media (max-width: 768px) {
    .exchange-row {
        flex-direction: column;
    }

    .exchange-input,
    .exchange-result,
    .exchange-address {
        width: 100%;
        min-width: 100%;
    }
}

.exchange-note {
    font-size: 0.9em;
    color: #666;
    text-align: center;
    padding: 10px;
    background: rgba(95, 59, 143, 0.05);
    border-radius: 6px;
}


.agent-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(74, 47, 100, 0.1);
}

.agent-header {
    text-align: center;
    margin-bottom: 40px;
}

.agent-header h3 {
    color: #4a2f64;
    font-size: 1.4em;
    font-weight: 500;
    line-height: 1.4;
}

.agent-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-card {
    background: #f8f5ff;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(74, 47, 100, 0.15);
}

.benefit-icon {
    font-size: 2em;
    line-height: 1;
}

.benefit-content h4 {
    color: #4a2f64;
    font-size: 1.2em;
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-content p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
}

.agent-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-item {
    background: #f8f5ff;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(74, 47, 100, 0.15);
}

.highlight-icon {
    font-size: 2em;
    line-height: 1;
}

.highlight-item span:not(.highlight-icon) {
    color: #4a2f64;
    font-size: 1.2em;
    font-weight: 600;
}

.agent-contact {
    text-align: center;
}

.contact-button {
    display: inline-block;
    background: linear-gradient(45deg, #5f3b8f, #8a57cf);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 47, 100, 0.2);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 47, 100, 0.3);
}

@media (max-width: 1200px) {
    .agent-benefits,
    .agent-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .agent-container {
        padding: 20px;
    }

    .agent-header h3 {
        font-size: 1.2em;
    }

    .benefit-card,
    .highlight-item {
        padding: 20px;
    }

    .benefit-content h4,
    .highlight-item span:not(.highlight-icon) {
        font-size: 1.1em;
    }

    .benefit-content p {
        font-size: 0.9em;
    }

    .contact-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}


.about-container {
    background: #f8f5ff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(74, 47, 100, 0.1);
    display: flex;
    flex-direction: column;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h3 {
    color: #4a2f64;
    font-size: 1.4em;
    font-weight: 500;
    line-height: 1.4;
}

.about-intro {
    text-align: center;
    margin-bottom: 40px;
}

.about-intro p {
    color: #5f3b8f;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.about-mission-vision {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.mission-card, .vision-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(74, 47, 100, 0.1);
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(74, 47, 100, 0.15);
}

.mission-card > div, .vision-card > div {
    text-align: center;
    margin-bottom: 15px;
}

.mission-card > div > div, .vision-card > div > div {
    font-size: 2em;
    color: #5f3b8f;
}

.mission-card h4, .vision-card h4 {
    color: #4a2f64;
    margin: 10px 0;
}

.mission-card p, .vision-card p {
    color: #666;
    line-height: 1.5;
}

.about-advantages {
    margin-bottom: 40px;
}

.about-advantages h4 {
    color: #4a2f64;
    text-align: center;
    margin-bottom: 20px;
}

.advantages-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(74, 47, 100, 0.1);
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(74, 47, 100, 0.15);
}

.advantage-item > div:first-child {
    font-size: 1.5em;
    color: #5f3b8f;
}

.advantage-item h5 {
    color: #4a2f64;
    margin: 0 0 5px 0;
}

.advantage-item p {
    color: #666;
    margin: 0;
    font-size: 0.95em;
}

.about-contact {
    text-align: center;
}

.about-contact h4 {
    color: #4a2f64;
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-method {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #5f3b8f;
    background: white;
    padding: 20px 80px;
    border-radius: 12px;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(74, 47, 100, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(74, 47, 100, 0.15);
}

.contact-method > div {
    font-size: 2em;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .advantages-container {
        flex-direction: column;
        align-items: center;
    }

    .advantage-item {
        width: 80%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 20px;
    }

    .about-header h3 {
        font-size: 1.3em;
    }

    .about-intro p {
        font-size: 1em;
    }

    .mission-card, .vision-card {
        min-width: 100%;
        margin-bottom: 20px;
    }

    .advantage-item {
        width: 100%;
    }

    .contact-method {
        padding: 15px;
    }
}