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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5f4a 50%, #0f4c3a 100%);
    min-height: 100vh;
}

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

/* Header Styles */
header {
    background: rgba(15, 76, 58, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #ffd700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.brand-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 0.9rem;
    color: #a8d5ba;
    font-weight: 300;
}

nav {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    border: 1px solid transparent;
}

.nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 1.1rem;
}

.nav-link.active {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

/* Main Content */
main {
    padding: 2rem 0;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #0f4c3a, #ffd700);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero h1 {
    font-size: 3rem;
    color: #0f4c3a;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: linear-gradient(135deg, #0f4c3a, #1a5f4a);
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(15, 76, 58, 0.3);
    transition: transform 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-3px);
}

.badge-icon {
    font-size: 1.2rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(15, 76, 58, 0.05);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.update-icon {
    font-size: 1.1rem;
}

/* Content Sections */
.content-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(15, 76, 58, 0.1);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #0f4c3a, #ffd700);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #0f4c3a;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.section-description {
    font-size: 1.1rem;
    color: #2c3e50;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Data Collection Section */
.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.data-item {
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.data-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.data-item.collect {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-color: #27ae60;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.2);
}

.data-item.no-collect {
    background: linear-gradient(135deg, #f8d7da 0%, #f1b0b7 100%);
    border-color: #e74c3c;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.data-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.data-icon {
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.data-item h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

.data-item ul {
    list-style: none;
}

.data-item li {
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.data-item li:last-child {
    border-bottom: none;
}

.item-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.item-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.item-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.item-desc {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Data Retention Section */
.retention-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.retention-item {
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid;
}

.retention-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.retention-item.auto-delete {
    background: linear-gradient(135deg, #e8f4f8 0%, #d1ecf1 100%);
    border-color: #3498db;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
}

.retention-item.immediate-delete {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-color: #f39c12;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.2);
}

.retention-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.retention-icon {
    font-size: 1.8rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.retention-item h3 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.time-badge {
    background: linear-gradient(135deg, #0f4c3a, #1a5f4a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(15, 76, 58, 0.3);
}

.time-badge.instant {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3); }
    50% { box-shadow: 0 4px 15px rgba(231, 76, 60, 0.6); }
    100% { box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3); }
}

.retention-item ul {
    list-style: none;
}

.retention-item li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #2c3e50;
    font-weight: 500;
}

.retention-item li:last-child {
    border-bottom: none;
}

/* Rights Section */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.right-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.right-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.right-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #0f4c3a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.right-item:hover::before {
    transform: scaleX(1);
}

.right-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0f4c3a, #1a5f4a);
    padding: 1rem;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(15, 76, 58, 0.3);
}

.right-item h3 {
    color: #0f4c3a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.right-item p {
    color: #2c3e50;
    line-height: 1.5;
}

/* Security Section */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.security-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.security-item:hover {
    transform: translateY(-3px);
    border-color: #0f4c3a;
    box-shadow: 0 10px 25px rgba(15, 76, 58, 0.15);
}

.security-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #0f4c3a, #1a5f4a);
    padding: 1rem;
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(15, 76, 58, 0.3);
}

.security-content h3 {
    color: #0f4c3a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.security-content p {
    color: #2c3e50;
    line-height: 1.5;
    margin: 0;
}

/* Contact Section */
.contact-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 2rem;
    border: 2px solid #dee2e6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #dee2e6;
}

.contact-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #0f4c3a, #1a5f4a);
    padding: 1.5rem;
    border-radius: 50%;
    color: white;
    box-shadow: 0 8px 25px rgba(15, 76, 58, 0.3);
    flex-shrink: 0;
}

.contact-details h3 {
    color: #0f4c3a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-email {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-style: italic;
}

.time-icon {
    font-size: 1.1rem;
}

.contact-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-feature {
    background: linear-gradient(135deg, #0f4c3a, #1a5f4a);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(15, 76, 58, 0.3);
    transition: transform 0.3s ease;
}

.contact-feature:hover {
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5f4a 100%);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    border-top: 4px solid #ffd700;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.footer-text h3 {
    margin: 0;
    font-size: 1.3rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text p {
    margin: 0;
    color: #a8d5ba;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #a8d5ba;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-badge {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Data Subject Rights Page Styles */
.rights-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.right-detailed-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.right-detailed-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.right-detailed-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #0f4c3a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.right-detailed-item:hover::before {
    transform: scaleX(1);
}

.right-detailed-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #dee2e6;
}

.right-detailed-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #0f4c3a, #1a5f4a);
    padding: 0.8rem;
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 15px rgba(15, 76, 58, 0.3);
}

.right-detailed-header h3 {
    color: #0f4c3a;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.right-detailed-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #2c3e50;
}

.right-detailed-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.right-detailed-content li {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.right-detailed-content strong {
    color: #0f4c3a;
    font-weight: 600;
}

/* Request Process Styles */
.request-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.process-step {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #dee2e6;
    min-width: 200px;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-3px);
    border-color: #0f4c3a;
    box-shadow: 0 10px 25px rgba(15, 76, 58, 0.15);
}

.step-number {
    background: linear-gradient(135deg, #0f4c3a, #1a5f4a);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(15, 76, 58, 0.3);
}

.step-content h3 {
    color: #0f4c3a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.step-content p {
    color: #2c3e50;
    line-height: 1.5;
    margin: 0;
}

.process-arrow {
    font-size: 2rem;
    color: #0f4c3a;
    font-weight: bold;
}

/* Email Template Styles */
.email-template {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #dee2e6;
    margin-top: 2rem;
}

.template-header {
    background: linear-gradient(135deg, #0f4c3a, #1a5f4a);
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.template-header h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

.template-header p {
    margin: 0 0 1rem 0;
    opacity: 0.9;
}

.copy-button {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #0f4c3a;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.copy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e, #fff59d);
}

.copy-button:active {
    transform: translateY(0);
}

.copy-icon {
    font-size: 1.1rem;
}

.copy-text {
    font-size: 0.95rem;
}

.template-content {
    padding: 2rem;
    background: #ffffff;
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    color: #2c3e50;
    border: 1px solid #dee2e6;
    margin: 1rem;
    border-radius: 8px;
}

.template-content strong {
    color: #0f4c3a;
    font-weight: 600;
}

.copy-notification {
    display: none;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    border-radius: 0 0 15px 15px;
    animation: slideDown 0.3s ease;
}

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

/* Quick Actions Styles */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.quick-action-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-action-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.quick-action-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #0f4c3a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quick-action-item:hover::before {
    transform: scaleX(1);
}

.action-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0f4c3a, #1a5f4a);
    padding: 1rem;
    border-radius: 50%;
    display: inline-block;
    color: white;
    box-shadow: 0 4px 15px rgba(15, 76, 58, 0.3);
}

.quick-action-item h3 {
    color: #0f4c3a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.quick-action-item p {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.action-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid;
    text-align: center;
    min-width: 140px;
}

.action-button.delete {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-color: #e74c3c;
}

.action-button.delete:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.action-button.export {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-color: #3498db;
}

.action-button.export:hover {
    background: linear-gradient(135deg, #2980b9, #21618c);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.action-button.correct {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border-color: #f39c12;
}

.action-button.correct:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.action-button.inquiry {
    background: linear-gradient(135deg, #0f4c3a, #1a5f4a);
    color: white;
    border-color: #0f4c3a;
}

.action-button.inquiry:hover {
    background: linear-gradient(135deg, #1a5f4a, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(15, 76, 58, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .brand-text h1 {
        font-size: 1.5rem;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .content-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .data-grid,
    .retention-info,
    .rights-grid,
    .security-grid,
    .rights-detailed-grid,
    .quick-actions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .request-process {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-features {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-icon {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .data-item,
    .retention-item,
    .right-item,
    .security-item {
        padding: 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .feature-badge,
    .contact-feature {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}