<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Athens Consultancy - Main Styles */

/* Color Palette - 5 Primary Colors + Shades */
:root {
  --primary-deep-teal: #2c5f5d;
  --primary-sage-green: #7f9f93;
  --primary-warm-gold: #d4af37;
  --primary-clay-red: #a0522d;
  --primary-midnight: #1a1a2e;
  
  /* Light Shades */
  --light-teal: #e6f2f1;
  --light-sage: #f0f4f2;
  --light-gold: #faf6e8;
  --light-clay: #f5f0eb;
  --light-midnight: #f8f8fa;
  
  /* Dark Shades */
  --dark-teal: #1a3f3d;
  --dark-sage: #5f7f73;
  --dark-gold: #b8941f;
  --dark-clay: #8b4513;
  --dark-midnight: #0f0f1a;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-deep-teal), var(--primary-sage-green));
  --gradient-secondary: linear-gradient(135deg, var(--primary-warm-gold), var(--primary-clay-red));
  --gradient-accent: linear-gradient(135deg, var(--primary-midnight), var(--primary-deep-teal));
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --h1-size: 2rem;
  --h2-size: 1.75rem;
  --h3-size: 1.5rem;
  --h4-size: 1.25rem;
  --navbar-brand-size: 1.125rem;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--primary-midnight);
  background-color: var(--light-midnight);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Typography - Conservative Sizes */
h1 { font-size: var(--h1-size); font-weight: 700; color: var(--primary-deep-teal); margin-bottom: 1rem; }
h2 { font-size: var(--h2-size); font-weight: 600; color: var(--primary-deep-teal); margin-bottom: 0.875rem; }
h3 { font-size: var(--h3-size); font-weight: 600; color: var(--primary-sage-green); margin-bottom: 0.75rem; }
h4 { font-size: var(--h4-size); font-weight: 500; color: var(--primary-sage-green); margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--dark-midnight); }

/* Navigation */
.navbar-brand {
  font-size: var(--navbar-brand-size) !important;
  font-weight: 600;
  color: var(--primary-deep-teal) !important;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(44, 95, 93, 0.1);
}

.nav-link {
  font-size: 12px !important;
  color: var(--primary-midnight) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-deep-teal) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../COD_images/cnae_hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

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

.hero-decorative {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
}

/* Sections */
.section {
  padding: 80px 0;
}

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

.section-subtitle {
  color: var(--primary-sage-green);
  font-size: var(--font-size-small);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* About Section */
.about-feature {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(44, 95, 93, 0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

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

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-warm-gold);
  margin-bottom: 1rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(44, 95, 93, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(44, 95, 93, 0.15);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-warm-gold);
  margin: 1rem 0;
}

.service-features {
  color: var(--primary-sage-green);
  font-size: var(--font-size-small);
}

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

.feature-item {
  background: var(--light-teal);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.feature-item i {
  font-size: 2rem;
  color: var(--primary-deep-teal);
  margin-bottom: 1rem;
}

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

.priceplan-card {
  background: white;
  border: 2px solid var(--light-sage);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease;
}

.priceplan-card:nth-child(2) {
  border-color: var(--primary-warm-gold);
  transform: scale(1.05);
}

.priceplan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-warm-gold);
  margin: 1.5rem 0;
}

.priceplan-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.priceplan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-sage);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(44, 95, 93, 0.08);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-warm-gold);
}

.team-role {
  color: var(--primary-sage-green);
  font-size: var(--font-size-small);
}

/* Reviews/Testimonials Section */
.review-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(44, 95, 93, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(44, 95, 93, 0.15);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--dark-midnight);
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.6;
}

.review-author {
  font-weight: 600;
  color: var(--primary-deep-teal);
  margin-top: auto;
  font-size: 0.9rem;
}

/* Case Studies Section */
.casestudy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.casestudy-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 95, 93, 0.08);
  transition: transform 0.3s ease;
}

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

.casestudy-content {
  padding: 2rem;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-item {
  background: var(--gradient-accent);
  color: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  position: relative;
}

.process-item::before {
  content: counter(process-counter);
  counter-increment: process-counter;
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--primary-warm-gold);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.process-grid {
  counter-reset: process-counter;
}

/* Timeline Section */
.timeline-container {
  position: relative;
  margin: 3rem 0;
}

.timeline-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(44, 95, 93, 0.08);
  position: relative;
  margin-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--primary-warm-gold);
  border-radius: 50%;
}

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

.career-item {
  background: var(--light-sage);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-deep-teal);
}

.career-role {
  color: var(--primary-sage-green);
  font-size: var(--font-size-small);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

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

.coreinfo-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(44, 95, 93, 0.08);
}

.coreinfo-item i {
  font-size: 2rem;
  color: var(--primary-clay-red);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 95, 93, 0.1);
  margin-top: 3rem;
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-deep-teal);
  box-shadow: 0 0 0 0.2rem rgba(44, 95, 93, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-primary);
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 95, 93, 0.08);
  transition: transform 0.3s ease;
}

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

.blog-content {
  padding: 2rem;
}

.blog-link {
  color: var(--primary-deep-teal);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--primary-sage-green);
}

/* FAQ Section */
.faq-container {
  margin-top: 3rem;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(44, 95, 93, 0.05);
}

.faq-question {
  background: var(--light-teal);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 0;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-sage-green);
  color: white;
}

.faq-answer {
  padding: 1.5rem;
  border-top: 1px solid var(--light-sage);
  color: var(--dark-midnight);
}

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

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--gradient-accent);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer h5 {
  color: var(--primary-warm-gold);
  margin-bottom: 1.5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer p {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-warm-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
}

/* Contact Info */
.contact-info p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 2rem 0;
  background: var(--light-teal);
}

.breadcrumb-img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

/* Utility Classes */
.text-primary { color: var(--primary-deep-teal) !important; }
.text-secondary { color: var(--primary-sage-green) !important; }
.bg-primary { background: var(--gradient-primary) !important; }
.bg-light { background: var(--light-midnight) !important; }

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
} </pre></body></html>