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

body {
    font-family: 'Inter', sans-serif;
    background-color: #3f4757;
    color: #58c0b4;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #3f4757 0%, #2a2f3a 100%);
    margin-bottom: 40px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #58c0b4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.subtitle {
    font-size: 2rem;
    font-weight: 500;
    color: #7dd3c7;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.content {
    padding: 40px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #58c0b4;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.issues-section {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

.issue-card {
    background: linear-gradient(145deg, #4a5263, #3a4150);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #58c0b4;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.issue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #58c0b4, #7dd3c7, #58c0b4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.issue-card:hover::before {
    opacity: 1;
}

.issue-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #58c0b4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.issue-card p {
    font-size: 1.1rem;
    color: #b8d4d1;
    line-height: 1.7;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.warning-section {
    background: linear-gradient(145deg, #5a2c2c, #4a2323);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #d4a5a5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.warning-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ff6b6b;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.warning-text {
    font-size: 1.2rem;
    color: #f8d7d7;
    line-height: 1.8;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.footer {
    text-align: center;
    padding: 30px 0;
    border-top: 2px solid #58c0b4;
    margin-top: 40px;
    color: #7dd3c7;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .issue-card {
        padding: 20px;
    }
    
    .issue-card h4 {
        font-size: 1.3rem;
    }
    
    .issue-card p {
        font-size: 1rem;
    }
    
    .warning-section {
        padding: 30px 20px;
    }
    
    .warning-title {
        font-size: 1.7rem;
    }
    
    .warning-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .issue-card {
        padding: 15px;
    }
    
    .warning-section {
        padding: 25px 15px;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.issue-card {
    animation: fadeInUp 0.6s ease-out;
}

.issue-card:nth-child(1) { animation-delay: 0.1s; }
.issue-card:nth-child(2) { animation-delay: 0.2s; }
.issue-card:nth-child(3) { animation-delay: 0.3s; }
.issue-card:nth-child(4) { animation-delay: 0.4s; }
.issue-card:nth-child(5) { animation-delay: 0.5s; }
.issue-card:nth-child(6) { animation-delay: 0.6s; }
.issue-card:nth-child(7) { animation-delay: 0.7s; }
.issue-card:nth-child(8) { animation-delay: 0.8s; }
.issue-card:nth-child(9) { animation-delay: 0.9s; }
.issue-card:nth-child(10) { animation-delay: 1.0s; }
.issue-card:nth-child(11) { animation-delay: 1.1s; }
.issue-card:nth-child(12) { animation-delay: 1.2s; }

/* Sticky Action Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2a2f3a 0%, #1a1f2a 100%);
    padding: 15px 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-top: 2px solid #58c0b4;
}

.action-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 180px;
}

.frustration-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.frustration-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff5252, #e53935);
}

.lawsuit-btn {
    background: linear-gradient(135deg, #58c0b4, #4a9b8e);
    color: white;
    box-shadow: 0 4px 15px rgba(88, 192, 180, 0.3);
}

.lawsuit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 192, 180, 0.4);
    background: linear-gradient(135deg, #4a9b8e, #3d7a6b);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(145deg, #4a5263, #3a4150);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid #58c0b4;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #58c0b4, #4a9b8e);
    padding: 20px 30px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close:hover {
    color: #ff6b6b;
}

.modal-body {
    padding: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #58c0b4;
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #5a6571;
    border-radius: 8px;
    background: #2a2f3a;
    color: #b8d4d1;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #58c0b4;
    box-shadow: 0 0 0 3px rgba(88, 192, 180, 0.1);
    background: #333a47;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7a8a8a;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.btn-cancel,
.btn-submit {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.btn-cancel {
    background: #5a6571;
    color: #b8d4d1;
}

.btn-cancel:hover {
    background: #6a757f;
    transform: translateY(-1px);
}

.btn-submit {
    background: linear-gradient(135deg, #58c0b4, #4a9b8e);
    color: white;
    box-shadow: 0 4px 15px rgba(88, 192, 180, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #4a9b8e, #3d7a6b);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(88, 192, 180, 0.4);
}

/* Mobile Responsive for Modals and Buttons */
@media (max-width: 768px) {
    .sticky-buttons {
        flex-direction: column;
        padding: 10px 15px;
        gap: 10px;
    }
    
    .action-btn {
        min-width: auto;
        width: 100%;
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-cancel,
    .btn-submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .sticky-buttons {
        padding: 8px 10px;
    }
    
    .action-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 98%;
    }
    
    .modal-header {
        padding: 12px 15px;
    }
    
    .modal-body {
        padding: 15px;
    }
}
