/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #202124;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #5f6368;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    color: white;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a73e8, #1557b0);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(66, 133, 244, 0.1);
    color: #4285f4;
    border: 2px solid #4285f4;
}

.btn-secondary:hover {
    background: #4285f4;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #4285f4;
    border: 2px solid #4285f4;
}

.btn-outline:hover {
    background: #4285f4;
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    width: 32px;
    height: 32px;
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #202124;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #5f6368;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4285f4;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 100%);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23e8f0fe" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #202124, #4285f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: linear-gradient(135deg, #34a853, #0f9d58);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5f6368;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4285f4;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #5f6368;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #5f6368;
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.feature-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
}

.feature-card:nth-child(1) {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.feature-card:nth-child(2) {
    top: 60%;
    left: -10%;
    animation-delay: 1s;
}

.feature-card:nth-child(3) {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Quick Check Section */
.quick-check {
    padding: 80px 0;
    background: white;
}

.quick-check-content {
    text-align: center;
}

.quick-check h2 {
    color: #202124;
    margin-bottom: 1rem;
}

.quick-check p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.eligibility-checker {
    max-width: 800px;
    margin: 0 auto;
}

.question {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.question.active {
    border-color: #4285f4;
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.1);
}

.question h3 {
    margin-bottom: 1.5rem;
    color: #202124;
}

.options {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.option-btn {
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.option-btn:hover {
    border-color: #4285f4;
    background: rgba(66, 133, 244, 0.05);
}

.option-btn.selected {
    border-color: #4285f4;
    background: #4285f4;
    color: white;
}

.hidden {
    display: none;
}

.result {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.result-success {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    color: #1b5e20;
}

.result-error {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    color: #c62828;
}

.result h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.section-header h2 {
    color: #202124;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.benefit-category {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-category:hover {
    transform: translateY(-5px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.category-header i {
    font-size: 1.5rem;
    color: #4285f4;
}

.category-header h3 {
    color: #202124;
    margin: 0;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(66, 133, 244, 0.05);
}

.benefit-item.featured {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(52, 168, 83, 0.1));
    border: 2px solid rgba(66, 133, 244, 0.2);
}

.benefit-item.highlighted {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.benefit-content h4 {
    color: #202124;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-content p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.benefit-value {
    display: inline-block;
    background: linear-gradient(135deg, #34a853, #0f9d58);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.benefit-examples {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.example {
    font-size: 0.85rem;
    color: #4285f4;
    font-style: italic;
}

.total-value {
    text-align: center;
    margin-top: 4rem;
}

.value-card {
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 15px 35px rgba(66, 133, 244, 0.3);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.regular-price .amount {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.student-price .amount.free {
    font-size: 2.5rem;
    font-weight: 700;
    color: #34a853;
}

.duration {
    font-size: 0.9rem;
    opacity: 0.8;
}

.savings {
    font-size: 1.3rem;
    font-weight: 600;
    color: #34a853;
}

/* Use Cases Section */
.use-cases {
    padding: 80px 0;
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.use-case {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.use-case:hover {
    border-color: #4285f4;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.1);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.use-case h3 {
    color: #202124;
    margin-bottom: 1rem;
}

.use-case ul {
    text-align: left;
}

.use-case li {
    color: #5f6368;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.use-case li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #34a853;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f0fe, #f8f9fa);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    padding: 2rem;
}

.quote-icon {
    color: #4285f4;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #202124;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    color: #202124;
    margin: 0;
    font-size: 1rem;
}

.author-info span {
    color: #5f6368;
    font-size: 0.9rem;
}

/* Eligibility Section */
.eligibility {
    padding: 80px 0;
    background: white;
}

.eligibility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.eligibility-requirements h3,
.required-documents h3 {
    color: #202124;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.documents-note {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border: 1px solid #34a853;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: #1a5f1a;
    line-height: 1.6;
}

.documents-note strong {
    color: #0d4f0d;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #34a853;
}

.requirement i {
    color: #34a853;
    font-size: 1.2rem;
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.document {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.document:hover {
    border-color: #4285f4;
    background: rgba(66, 133, 244, 0.05);
}

.document-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.document-info h4 {
    color: #202124;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.document-info p {
    font-size: 0.9rem;
    margin: 0;
}

/* How to Apply Section */
.how-to-apply {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e8f0fe);
}

.application-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    left: 35px;
    bottom: -15px;
    width: 2px;
    height: 15px;
    background: #e0e0e0;
}

.step:last-child::after {
    display: none;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.step-content h3 {
    color: #202124;
    margin-bottom: 1rem;
}

.step-content ul {
    margin-left: 1rem;
}

.step-content li {
    color: #5f6368;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.step-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4285f4;
    font-weight: bold;
}

.step-actions {
    margin-top: 1rem;
}

.payment-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(52, 168, 83, 0.1);
    color: #0f9d58;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
}

.verification-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #5f6368;
    font-size: 0.9rem;
}

.timeline-item i {
    color: #4285f4;
}

.success-actions {
    margin-top: 1rem;
}

/* Pro Tips Section */
.pro-tips {
    padding: 80px 0;
    background: white;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tip-category {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tip-category:hover {
    border-color: #4285f4;
    transform: translateY(-3px);
}

.tip-category h3 {
    color: #202124;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tip-category h3 i {
    color: #ffc107;
}

.tip-category ul {
    margin-left: 1rem;
}

.tip-category li {
    color: #5f6368;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.tip-category li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Storage Calculator Section */
.storage-calculator {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f0fe, #f8f9fa);
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.calculator-tool {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.calculator-tool h3 {
    color: #202124;
    margin-bottom: 2rem;
}

.storage-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-weight: 500;
    color: #202124;
}

.storage-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.storage-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4285f4;
    cursor: pointer;
}

.storage-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4285f4;
    cursor: pointer;
    border: none;
}

.value {
    font-weight: 600;
    color: #4285f4;
}

.storage-result {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.total-needed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.recommendation {
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.recommendation.success {
    background: rgba(52, 168, 83, 0.1);
    color: #0f9d58;
}

.recommendation.warning {
    background: rgba(255, 193, 7, 0.1);
    color: #f57c00;
}

.renewal-planner {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.renewal-planner h3 {
    color: #202124;
    margin-bottom: 2rem;
}

.renewal-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.option {
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

.option.recommended {
    border-color: #34a853;
    background: rgba(52, 168, 83, 0.05);
}

.option h4 {
    color: #202124;
    margin-bottom: 1rem;
}

.option ul {
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.option li {
    color: #5f6368;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.option li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4285f4;
    font-weight: bold;
}

.cost {
    font-weight: 600;
    color: #202124;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.renewal-timeline h4 {
    color: #202124;
    margin-bottom: 1rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-event {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.timeline-event.important {
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid #ff6b6b;
}

.date {
    font-weight: 600;
    color: #4285f4;
}

.event {
    color: #5f6368;
}

/* Terms Section */
.terms-important {
    padding: 80px 0;
    background: white;
}

.terms-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.term-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border-left: 5px solid #4285f4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.term-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.term-item.critical {
    border-left-color: #ea4335;
    background: linear-gradient(135deg, #fff8f8, #fef5f5);
}

.term-item.storage {
    border-left-color: #fbbc04;
    background: linear-gradient(135deg, #fffbf0, #fef9e7);
}

.term-item.eligibility {
    border-left-color: #34a853;
    background: linear-gradient(135deg, #f8fff8, #f0f8f0);
}

.term-item.deadline {
    border-left-color: #9c27b0;
    background: linear-gradient(135deg, #faf5ff, #f3e5f5);
}

.term-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.term-item.critical .term-icon {
    background: linear-gradient(135deg, #ea4335, #d33b2c);
}

.term-item.storage .term-icon {
    background: linear-gradient(135deg, #fbbc04, #f9ab00);
}

.term-item.eligibility .term-icon {
    background: linear-gradient(135deg, #34a853, #0f9d58);
}

.term-item.deadline .term-icon {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.term-item h3 {
    color: #202124;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.term-content {
    line-height: 1.7;
}

.warning-box {
    background: #ffebee;
    border: 2px solid #ea4335;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.warning-box h4 {
    color: #ea4335;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.warning-box p {
    color: #d32f2f;
    margin: 0;
    font-weight: 500;
}

.action-required {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.action-required h4 {
    color: #1976d2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.storage-scenarios {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.scenario {
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e8eaed;
}

.scenario.continue {
    background: #f0f8f0;
    border-color: #34a853;
}

.scenario.cancel {
    background: #fff3e0;
    border-color: #ff9800;
}

.scenario.critical {
    background: #ffebee;
    border-color: #ea4335;
}

.scenario h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.scenario.continue h4 {
    color: #2e7d32;
}

.scenario.cancel h4 {
    color: #f57c00;
}

.scenario.critical h4 {
    color: #d32f2f;
}

.storage-breakdown {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.storage-breakdown h4 {
    margin-bottom: 1rem;
    color: #202124;
}

.storage-items {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.storage-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #e8eaed;
}

.storage-item i {
    color: #4285f4;
}

.backup-recommendations {
    background: #e8f5e8;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.backup-recommendations h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

.eligibility-requirements,
.verification-documents,
.usage-restrictions,
.privacy-data {
    margin-bottom: 2rem;
}

.eligibility-requirements h4,
.verification-documents h4,
.usage-restrictions h4,
.privacy-data h4 {
    color: #202124;
    margin-bottom: 1rem;
    font-weight: 600;
}

.important-dates {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.date-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #4285f4;
}

.date-item.urgent {
    background: #ffebee;
    border-left-color: #ea4335;
}

.date-item.critical {
    background: #fff3e0;
    border-left-color: #ff9800;
}

.date-item h4 {
    margin-bottom: 0.5rem;
    color: #202124;
}

.date-item p {
    margin-bottom: 0.25rem;
}

.date-item small {
    color: #5f6368;
    font-style: italic;
}

.cancellation-guide {
    background: #e8f0fe;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.cancellation-guide h4 {
    color: #1a73e8;
    margin-bottom: 1rem;
}

.cancellation-guide ol {
    margin-bottom: 1rem;
}

.cancellation-guide li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.terms-summary {
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    text-align: center;
}

.terms-summary h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.summary-points {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.summary-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    text-align: left;
}

.summary-point.critical {
    background: rgba(234, 67, 53, 0.2);
    border: 1px solid rgba(234, 67, 53, 0.3);
}

.summary-point i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.summary-point span {
    flex: 1;
}

/* Enhanced Comparison Section Styles */
.comparison-analysis {
    margin-top: 3rem;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.analysis-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.analysis-item:hover {
    border-color: #4285f4;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.1);
}

.analysis-item.winner {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-color: #34a853;
    position: relative;
}

.analysis-item.winner::before {
    content: '🏆';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 2rem;
    background: white;
    border-radius: 50%;
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.analysis-header i {
    font-size: 1.5rem;
    color: #4285f4;
}

.analysis-header h3 {
    margin: 0;
    color: #202124;
}

.analysis-header h3 a {
    color: #202124;
    text-decoration: none;
    transition: color 0.3s ease;
}

.analysis-header h3 a:hover {
    color: #4285f4;
    text-decoration: underline;
}

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

.analysis-item li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.analysis-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4285f4;
    font-weight: bold;
}

.cost-comparison {
    margin-top: 3rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
}

.cost-comparison h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #202124;
}

.cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.cost-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e8eaed;
    transition: all 0.3s ease;
}

.cost-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cost-item.best {
    border-color: #34a853;
    background: linear-gradient(135deg, #f8fff8, #f0f8f0);
}

.cost-item.expensive {
    border-color: #ea4335;
    background: linear-gradient(135deg, #fff8f8, #fef0f0);
}

.cost-item h4 {
    margin-bottom: 1rem;
    color: #202124;
}

.cost-breakdown .year {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
}

.cost-breakdown .free {
    color: #34a853;
    font-weight: 600;
}

.cost-breakdown .paid {
    color: #ea4335;
    font-weight: 600;
}

.cost-breakdown .total {
    border-top: 2px solid #e8eaed;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.cost-breakdown .savings,
.cost-breakdown .note {
    font-size: 0.9rem;
    color: #5f6368;
    margin-top: 0.5rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e8eaed;
}

.comparison-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #202124;
}

.comparison-table th.highlight {
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    color: white;
}

.comparison-table td.highlight {
    background: linear-gradient(135deg, #e8f0fe, #f0f4ff);
    border-left: 3px solid #4285f4;
    font-weight: 500;
}

.comparison-table tr:hover {
    background: #f8f9fa;
}

.comparison-table tr.total-row {
    background: #f8f9fa;
    font-weight: 600;
}

.comparison-table small {
    display: block;
    color: #5f6368;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Enhanced Terms Section Styles */
.terms-important {
    background: linear-gradient(135deg, #fff3e0, #ffeaa7);
    padding: 80px 0;
}

.terms-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.term-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border-left: 5px solid #4285f4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.term-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.term-item.critical {
    border-left-color: #ea4335;
    background: linear-gradient(135deg, #fff8f8, #fef5f5);
}

.term-item.storage {
    border-left-color: #fbbc04;
    background: linear-gradient(135deg, #fffbf0, #fef9e7);
}

.term-item.eligibility {
    border-left-color: #34a853;
    background: linear-gradient(135deg, #f8fff8, #f0f8f0);
}

.term-item.deadline {
    border-left-color: #9c27b0;
    background: linear-gradient(135deg, #faf5ff, #f3e5f5);
}

.term-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.term-item.critical .term-icon {
    background: linear-gradient(135deg, #ea4335, #d33b2c);
}

.term-item.storage .term-icon {
    background: linear-gradient(135deg, #fbbc04, #f9ab00);
}

.term-item.eligibility .term-icon {
    background: linear-gradient(135deg, #34a853, #0f9d58);
}

.term-item.deadline .term-icon {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.term-item h3 {
    color: #202124;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.term-content {
    line-height: 1.7;
}

.warning-box {
    background: #ffebee;
    border: 2px solid #ea4335;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.warning-box h4 {
    color: #ea4335;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.warning-box p {
    color: #d32f2f;
    margin: 0;
    font-weight: 500;
}

.action-required {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.action-required h4 {
    color: #1976d2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.storage-scenarios {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.scenario {
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e8eaed;
}

.scenario.continue {
    background: #f0f8f0;
    border-color: #34a853;
}

.scenario.cancel {
    background: #fff3e0;
    border-color: #ff9800;
}

.scenario.critical {
    background: #ffebee;
    border-color: #ea4335;
}

.scenario h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.scenario.continue h4 {
    color: #2e7d32;
}

.scenario.cancel h4 {
    color: #f57c00;
}

.scenario.critical h4 {
    color: #d32f2f;
}

.storage-breakdown {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.storage-breakdown h4 {
    margin-bottom: 1rem;
    color: #202124;
}

.storage-items {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.storage-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #e8eaed;
}

.storage-item i {
    color: #4285f4;
}

.backup-recommendations {
    background: #e8f5e8;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.backup-recommendations h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

.eligibility-requirements,
.verification-documents,
.usage-restrictions,
.privacy-data {
    margin-bottom: 2rem;
}

.eligibility-requirements h4,
.verification-documents h4,
.usage-restrictions h4,
.privacy-data h4 {
    color: #202124;
    margin-bottom: 1rem;
    font-weight: 600;
}

.important-dates {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.date-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #4285f4;
}

.date-item.urgent {
    background: #ffebee;
    border-left-color: #ea4335;
}

.date-item.critical {
    background: #fff3e0;
    border-left-color: #ff9800;
}

.date-item h4 {
    margin-bottom: 0.5rem;
    color: #202124;
}

.date-item p {
    margin-bottom: 0.25rem;
}

.date-item small {
    color: #5f6368;
    font-style: italic;
}

.cancellation-guide {
    background: #e8f0fe;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.cancellation-guide h4 {
    color: #1a73e8;
    margin-bottom: 1rem;
}

.cancellation-guide ol {
    margin-bottom: 1rem;
}

.cancellation-guide li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.terms-summary {
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    text-align: center;
}

.terms-summary h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.summary-points {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.summary-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    text-align: left;
}

.summary-point.critical {
    background: rgba(234, 67, 53, 0.2);
    border: 1px solid rgba(234, 67, 53, 0.3);
}

.summary-point i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.summary-point span {
    flex: 1;
}

/* FAQ Section */
.faq {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #202124;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #4285f4;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background: rgba(66, 133, 244, 0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    color: #5f6368;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 2rem 1.5rem;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: #202124;
}

.faq-answer a {
    color: #4285f4;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta .btn {
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cta .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta .btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-3px);
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-features .feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cta-features .feature i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.cta-features .feature span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #202124, #2d2f33);
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #4285f4;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    display: block;
    /* Remove problematic filter and use the original colored logo */
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #b0b3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #b0b3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #4285f4;
    transform: translateX(5px);
}

.footer-section ul li a i {
    margin-right: 0.5rem;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(66, 133, 244, 0.1);
    border: 1px solid rgba(66, 133, 244, 0.3);
    border-radius: 8px;
    color: #4285f4;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4285f4;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact h5 {
    color: #e8eaed;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.footer-contact p {
    color: #b0b3b8;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(26, 115, 232, 0.1);
    border: 1px solid rgba(26, 115, 232, 0.3);
    border-radius: 8px;
    color: #1a73e8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: #1a73e8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.contact-note {
    color: #9aa0a6;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-style: italic;
}

.discord-link {
    margin-bottom: 1rem;
}

.discord-link span,
.contact-email span {
    font-weight: 500;
}

/* Responsive Footer Contact */
@media (max-width: 768px) {
    .footer-contact h5 {
        font-size: 0.95rem;
    }
    
    .social-links a,
    .contact-email {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }
    
    .contact-note {
        font-size: 0.8rem;
    }
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #e8eaed;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

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

.footer-bottom-content p {
    margin: 0;
    color: #9aa0a6;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: #9aa0a6;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #4285f4;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.back-to-top:hover {
    background: #1a73e8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.back-to-top.show {
    display: flex;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* GitHub Education Pack Link Hover Effects */
a[href="https://gsep.hack4life.me"] .analysis-item:hover,
a[href="https://gsep.hack4life.me"] .cost-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.15);
    background: linear-gradient(135deg, #f8f9fa, #e8f0fe);
}

a[href="https://gsep.hack4life.me"] .analysis-item:hover .analysis-header i,
a[href="https://gsep.hack4life.me"] .cost-item:hover h4 {
    color: #4285f4;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Enhanced table cell linking */
.comparison-table a[href="https://gsep.hack4life.me"] {
    color: #4285f4 !important;
    font-weight: 600;
}

.comparison-table a[href="https://gsep.hack4life.me"]:hover {
    text-decoration: underline;
    color: #1a73e8 !important;
}
